r32414 - in /trunk/libdbd-sqlite3-perl/debian: changelog patches/error-reset.patch

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Mon Mar 30 08:50:31 UTC 2009


Author: eloy
Date: Mon Mar 30 08:50:27 2009
New Revision: 32414

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=32414
Log:
patches/error-reset.patch refreshed

Modified:
    trunk/libdbd-sqlite3-perl/debian/changelog
    trunk/libdbd-sqlite3-perl/debian/patches/error-reset.patch

Modified: trunk/libdbd-sqlite3-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/changelog?rev=32414&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/changelog (original)
+++ trunk/libdbd-sqlite3-perl/debian/changelog Mon Mar 30 08:50:27 2009
@@ -3,7 +3,8 @@
   * (NOT RELEASED YET) New upstream release
   * debian/control: updated to debhelper (>= 7), Standards-Version updated 
     to 3.8.1
-  * Removed used_only_once.patch, it's now fixed in upstream  
+  * Removed used_only_once.patch, it's now fixed in upstream, refreshed
+    error-reset.patch
 
  -- Krzysztof Krzyżaniak (eloy) <eloy at debian.org>  Mon, 30 Mar 2009 10:23:11 +0200
 

Modified: trunk/libdbd-sqlite3-perl/debian/patches/error-reset.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbd-sqlite3-perl/debian/patches/error-reset.patch?rev=32414&op=diff
==============================================================================
--- trunk/libdbd-sqlite3-perl/debian/patches/error-reset.patch (original)
+++ trunk/libdbd-sqlite3-perl/debian/patches/error-reset.patch Mon Mar 30 08:50:27 2009
@@ -1,17 +1,8 @@
 Call sqlite3_reset() instead of sqlite3_finalize() in error
 situations. See #450744.
---- a/dbdimp.c
-+++ b/dbdimp.c
-@@ -399,7 +399,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *i
-                 continue;
-             }
-             /* There are bug reports that say this should be sqlite3_reset() */
--            sqlite3_finalize(imp_sth->stmt);
-+            sqlite3_reset(imp_sth->stmt);
-             sqlite_error(sth, (imp_xxh_t*)imp_sth, imp_sth->retval, (char*)sqlite3_errmsg(imp_dbh->db));
-             return -5;
-         }
-@@ -419,7 +419,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *i
+--- dbdimp.c.old	2009-03-30 10:40:12.000000000 +0200
++++ dbdimp.c	2009-03-30 10:45:16.000000000 +0200
+@@ -425,7 +425,7 @@
                            sqlite_trace(5, "exec ok - %d rows, %d cols\n", imp_sth->nrow, DBIc_NUM_FIELDS(imp_sth));
                            return 0;
                            /* There are bug reports that say this should be sqlite3_reset() */




More information about the Pkg-perl-cvs-commits mailing list