Skip to content

Commit 2d63648

Browse files
committed
parser.c: Remove useless dereference
1 parent 1265677 commit 2d63648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/json/ext/parser/parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ static inline bool FORCE_INLINE string_scan(JSON_ParserState *state)
975975
if (RB_UNLIKELY(string_scan_table[(unsigned char)*state->cursor])) {
976976
return 1;
977977
}
978-
*state->cursor++;
978+
state->cursor++;
979979
}
980980
return 0;
981981
}

0 commit comments

Comments
 (0)