Fix memory leak. (#72990, Paoloo Maggi)
authorOwen Taylor <otaylor@redhat.com>
Thu, 28 Feb 2002 16:45:37 +0000 (16:45 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Thu, 28 Feb 2002 16:45:37 +0000 (16:45 +0000)
Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>

        * glib/gshell.c (g_shell_unquote): Fix memory leak.
        (#72990, Paoloo Maggi)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gshell.c

index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7e7c13a5d4e12c18d1f1502bc6fee2e589a37a76..5d815c7dfc3d07898fea2452bab217e889bb5e8f 100644 (file)
@@ -1,3 +1,8 @@
+Thu Feb 28 11:13:49 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gshell.c (g_shell_unquote): Fix memory leak.
+       (#72990, Paoloo Maggi)
+
 2002-02-28  Sven Neumann  <sven@gimp.org>
 
        * m4macros/glib-2.0.m4: nicer output of configure --help.
index 7a2c70a03f1160067d0123792d365bca52bc9c5b..08318fd914774a8149520948e7dc7c8706fe1468 100644 (file)
@@ -305,6 +305,7 @@ g_shell_unquote (const gchar *quoted_string,
         }
     }
 
+  g_free (unquoted);
   return g_string_free (retval, FALSE);
   
  error: