avoid comparison between signed and unsigned integer; ref #3312

This commit is contained in:
Yukihiro "Matz" Matsumoto
2016-12-01 18:49:39 +09:00
parent f1cf6ef817
commit 2cca9d3688
+1 -1
View File
@@ -3753,7 +3753,7 @@ scan_hex(const int *start, int len, int *retlen)
}
static int32_t
read_escape_unicode(parser_state *p, size_t limit)
read_escape_unicode(parser_state *p, int limit)
{
int32_t c;
int buf[9];