diff options
author | Seonah Moon <seonah1.moon@samsung.com> | 2016-10-28 17:39:14 +0900 |
---|---|---|
committer | Seonah Moon <seonah1.moon@samsung.com> | 2016-10-28 17:41:05 +0900 |
commit | a8683defdf3cc6ff9fb8c86eb0782d1237a984b7 (patch) | |
tree | 589981b6080e9bc45618b59d9454c3539431d6a6 | |
parent | 897d384e768b7341f725cad89c054093b3f36ef7 (diff) | |
download | libsoup-a8683defdf3cc6ff9fb8c86eb0782d1237a984b7.tar.gz libsoup-a8683defdf3cc6ff9fb8c86eb0782d1237a984b7.tar.bz2 libsoup-a8683defdf3cc6ff9fb8c86eb0782d1237a984b7.zip |
[RQ161025-00268] Fixed memory leaksubmit/tizen_unified/20170308.100414submit/tizen/20161101.065543accepted/tizen/wearable/20161102.072309accepted/tizen/unified/20170309.040010accepted/tizen/tv/20161102.072253accepted/tizen/mobile/20161102.072236accepted/tizen/ivi/20161102.072336
Change-Id: Ie054873f969fd919b57de0092abe260c66116161
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
-rw-r--r-- | libsoup/soup-form.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/soup-form.c b/libsoup/soup-form.c index 19b2de2d..93d6b7ef 100644 --- a/libsoup/soup-form.c +++ b/libsoup/soup-form.c @@ -107,7 +107,7 @@ soup_form_decode (const char *encoded_form) g_hash_table_replace (form_data_set, name, value); } - g_free (pairs); + g_strfreev (pairs); return form_data_set; } |