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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7e7c13a..5d815c7 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 7a2c70a..08318fd 100644 (file)
@@ -305,6 +305,7 @@ g_shell_unquote (const gchar *quoted_string,
         }
     }
 
+  g_free (unquoted);
   return g_string_free (retval, FALSE);
   
  error: