diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-05 22:23:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-05 22:23:17 +0000 |
commit | 300b0d6897c31b9250dd6a60746646b036986983 (patch) | |
tree | 71066e1595776ed0e53efb0d1a91bd1b2c639d20 /src/mir_core/json/JSONNode.h | |
parent | edae1aa833a1223ca2e0b14d454fa114b3f0213b (diff) |
fix for massive memory leak in json parser
git-svn-id: http://svn.miranda-ng.org/main/trunk@5593 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core/json/JSONNode.h')
-rw-r--r-- | src/mir_core/json/JSONNode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_core/json/JSONNode.h b/src/mir_core/json/JSONNode.h index 487925b04f..27dbef2aee 100644 --- a/src/mir_core/json/JSONNode.h +++ b/src/mir_core/json/JSONNode.h @@ -93,7 +93,7 @@ public: void clear(void);
unsigned char type(void) const;
- json_string name(void) const;
+ const json_char* name(void) const;
void set_name(const json_string & newname);
#ifdef JSON_COMMENTS
void set_comment(const json_string & comment);
@@ -505,7 +505,7 @@ inline unsigned char JSONNode::type(void) const { JSON_CHECK_INTERNAL();
return internal -> type();
}
-inline json_string JSONNode::name(void) const {
+inline const json_char* JSONNode::name(void) const {
JSON_CHECK_INTERNAL();
return internal -> name();
}
|