Start packaging the bz2 python module as it is needed for building Qt5
[profile/ivi/python.git] / packaging / python-2.5.1-sqlite.patch
1 --- Modules/_sqlite/cursor.c
2 +++ Modules/_sqlite/cursor.c
3 @@ -782,6 +782,9 @@
4              goto error;
5          }
6  
7 +        if (! statement)
8 +            break;
9 +
10          /* execute statement, and ignore results of SELECT statements */
11          rc = SQLITE_ROW;
12          while (rc == SQLITE_ROW) {