From 6f731e94d12c1cb81d10204d0848813359581d4e Mon Sep 17 00:00:00 2001 From: Mikhail Sychev Date: Fri, 17 May 2013 16:43:14 -0700 Subject: [PATCH] Use uint32 for decoding depth counter. --- lib/ultrajsondec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ultrajsondec.c b/lib/ultrajsondec.c index 4b8281b..061cd04 100644 --- a/lib/ultrajsondec.c +++ b/lib/ultrajsondec.c @@ -60,7 +60,7 @@ struct DecoderState wchar_t *escEnd; int escHeap; int lastType; - JSUTF16 objDepth; + JSUINT32 objDepth; JSONObjectDecoder *dec; };