[Pkg-gtkpod-devel] r243 - in gtkpod/trunk: debian src

nion at alioth.debian.org nion at alioth.debian.org
Sun Sep 9 18:16:10 UTC 2007


Author: nion
Date: 2007-09-09 18:16:10 +0000 (Sun, 09 Sep 2007)
New Revision: 243

Modified:
   gtkpod/trunk/debian/changelog
   gtkpod/trunk/src/mp3file.c
Log:
fixed #441308, preparing 0.99.10-3 upload

Modified: gtkpod/trunk/debian/changelog
===================================================================
--- gtkpod/trunk/debian/changelog	2007-08-31 19:33:13 UTC (rev 242)
+++ gtkpod/trunk/debian/changelog	2007-09-09 18:16:10 UTC (rev 243)
@@ -1,3 +1,10 @@
+gtkpod (0.99.10-3) unstable; urgency=low
+
+  * Added missing fclose() call in mp3file.c to prevent too many open
+    file descriptors (Closes: #441308).
+
+ -- Nico Golde <nion at debian.org>  Sun, 09 Sep 2007 20:13:31 +0200
+
 gtkpod (0.99.10-2) unstable; urgency=low
 
   * Upload to unstable

Modified: gtkpod/trunk/src/mp3file.c
===================================================================
--- gtkpod/trunk/src/mp3file.c	2007-08-31 19:33:13 UTC (rev 242)
+++ gtkpod/trunk/src/mp3file.c	2007-09-09 18:16:10 UTC (rev 243)
@@ -2353,6 +2353,7 @@
     gd->gapless_data = totaldatasize - finaleight;
     /* total samples minus pre/postgap */
     gd->samplecount = totalframes * mysamplesperframe - gd->pregap - gd->postgap;
+	fclose(file);
 
     return TRUE;
 




More information about the Pkg-gtkpod-devel mailing list