Author: megabajt                     Date: Sat Sep 22 13:23:41 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- fix *** glibc detected *** /usr/bin/liferea-bin: free(): invalid pointer: 
0x08411898 ***
  String returned by sqlite3_mprintf() should be released by sqlite3_free() not 
by g_free()

---- Files affected:
SOURCES:
   liferea-free.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/liferea-free.patch
diff -u /dev/null SOURCES/liferea-free.patch:1.1
--- /dev/null   Sat Sep 22 15:23:41 2007
+++ SOURCES/liferea-free.patch  Sat Sep 22 15:23:36 2007
@@ -0,0 +1,12 @@
+diff -urN liferea-1.4.2b/src/db.c liferea-1.4.2b.new/src/db.c
+--- liferea-1.4.2b/src/db.c    2007-09-18 23:57:16.000000000 +0200
++++ liferea-1.4.2b.new/src/db.c        2007-09-22 15:04:00.000000000 +0200
+@@ -1279,7 +1279,7 @@
+       if (SQLITE_OK != res) 
+               debug2 (DEBUG_DB, "Create view failed (%s) SQL: %s", err, sql);
+                              
+-      g_free (select);
++      sqlite3_free (select);
+       sqlite3_free (sql);
+       sqlite3_free (err);
+ }
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to