From a20d8f37c8f8c1df1eb65dccb0f695937905d6ab Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Sat, 29 Sep 2012 14:31:10 +0200 Subject: memleak fix (part of bug #1043571) (bzr r11715) --- src/libcroco/cr-term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcroco/cr-term.c b/src/libcroco/cr-term.c index 63b39271b..d95c4979f 100644 --- a/src/libcroco/cr-term.c +++ b/src/libcroco/cr-term.c @@ -365,9 +365,9 @@ cr_term_to_string (CRTerm * a_this) tmp_str = NULL; } - g_free (content); - content = NULL; } + g_free (content); + content = NULL; g_string_append (str_buf, ")"); } -- cgit v1.2.3