diff options
author | Antony Dovgal <tony2001@php.net> | 2006-07-25 09:06:55 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-07-25 09:06:55 +0000 |
commit | cff6e2b4468097940b0215d765c2edfebbc753a2 (patch) | |
tree | 2c048c469f121ed137a038a75cb1fd265676b69b /ext/json/JSON_parser.c | |
parent | c1ddf2c2ed730521d1f42cea9e4639ade3f59e0a (diff) | |
download | php-git-cff6e2b4468097940b0215d765c2edfebbc753a2.tar.gz |
initialize variable
Diffstat (limited to 'ext/json/JSON_parser.c')
-rw-r--r-- | ext/json/JSON_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/JSON_parser.c b/ext/json/JSON_parser.c index 51f8b6c041..dce42d37ee 100644 --- a/ext/json/JSON_parser.c +++ b/ext/json/JSON_parser.c @@ -388,7 +388,7 @@ JSON_parser(zval *z, unsigned short p[], int length, int assoc TSRMLS_DC) smart_str key = {0}; int type = -1; - unsigned short utf16; + unsigned short utf16 = 0; JSON(the_top) = -1; push(&the_json, z, MODE_DONE); |