Skip to content

Commit

Permalink
Merge pull request steemit#2178 from steemit/json-fix
Browse files Browse the repository at this point in the history
Json parsing fix.
  • Loading branch information
Michael Vandeberg authored Mar 1, 2018
2 parents 3200aac + 5f53829 commit d654a4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/fc/src/io/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,9 @@ namespace fc
{
skip_white_space(in);
variant var;
while( signed char c = in.peek() )
while( true )
{
signed char c = in.peek();
switch( c )
{
case ' ':
Expand Down

0 comments on commit d654a4d

Please sign in to comment.