Revision: 2101
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2101&view=rev
Author:   jcsjcs
Date:     2008-08-17 02:14:07 +0000 (Sun, 17 Aug 2008)

Log Message:
-----------
        * src/file.c (add_coverart): fixed memory leak. Thanks to Andrea.

Modified Paths:
--------------
    gtkpod/trunk/ChangeLog
    gtkpod/trunk/src/file.c

Modified: gtkpod/trunk/ChangeLog
===================================================================
--- gtkpod/trunk/ChangeLog      2008-08-17 02:13:46 UTC (rev 2100)
+++ gtkpod/trunk/ChangeLog      2008-08-17 02:14:07 UTC (rev 2101)
@@ -17,6 +17,8 @@
 
        * src/mp3file.[ch]: Added "const" qualifier to filename arguments.
 
+       * src/file.c (add_coverart): fixed memory leak. Thanks to Andrea.
+
 2008-08-16 Paul Richardson <phantom_sf at users.sourceforge.net>
 
        * src/display.c: memory leak fix in display_image_dialog. Thanks to

Modified: gtkpod/trunk/src/file.c
===================================================================
--- gtkpod/trunk/src/file.c     2008-08-17 02:13:46 UTC (rev 2100)
+++ gtkpod/trunk/src/file.c     2008-08-17 02:14:07 UTC (rev 2101)
@@ -1260,7 +1260,8 @@
     }
 
     g_strfreev (templates);
-    g_free(full_template);
+    g_free (full_template);
+    g_free (dirname);
 }
 
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to