[RQ161025-00268] Fixed memory leak 33/94333/1 accepted/tizen/ivi/20161102.072336 accepted/tizen/mobile/20161102.072236 accepted/tizen/tv/20161102.072253 accepted/tizen/unified/20170309.040010 accepted/tizen/wearable/20161102.072309 submit/tizen/20161101.065543 submit/tizen_unified/20170308.100414
authorSeonah Moon <seonah1.moon@samsung.com>
Fri, 28 Oct 2016 08:39:14 +0000 (17:39 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Fri, 28 Oct 2016 08:41:05 +0000 (17:41 +0900)
Change-Id: Ie054873f969fd919b57de0092abe260c66116161
Signed-off-by: Seonah Moon <seonah1.moon@samsung.com>
libsoup/soup-form.c

index 19b2de2..93d6b7e 100644 (file)
@@ -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;
 }