william tonkin added the comment:

The following worked for me:


--- util.c      2014-09-11 15:15:11.480266548 -0400
+++ util.c.fixed        2014-09-11 15:17:19.214878592 -0400
@@ -54,7 +54,7 @@
         (void)sqlite3_reset(st);
     }

-    errorcode = sqlite3_errcode(db);
+    errorcode = 0xffu & sqlite3_errcode(db);

     switch (errorcode)
     {

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22382>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to