diff --git a/vfs-methods/themus/ChangeLog b/vfs-methods/themus/ChangeLog index 2bd2529b4..3d6c528a4 100644 --- a/vfs-methods/themus/ChangeLog +++ b/vfs-methods/themus/ChangeLog @@ -1,3 +1,7 @@ +2007-01-07 Thomas Wood + + * themus-theme-applier.c: (main): Free the program variable correctly + 2007-01-07 Thomas Wood * themus-theme-applier.c: (main): Applied modified patch from bug 167063 diff --git a/vfs-methods/themus/themus-theme-applier.c b/vfs-methods/themus/themus-theme-applier.c index dc4fc4bf9..7a4f32b01 100644 --- a/vfs-methods/themus/themus-theme-applier.c +++ b/vfs-methods/themus/themus-theme-applier.c @@ -104,6 +104,6 @@ int main (int argc, char **argv) g_object_unref (client); } - g_free (program); + g_object_unref (program); return 0; }