|
|
@@ -13,6 +13,18 @@ Index: sqlite-2.8.17/configure
|
|
|
|
|
|
#########
|
|
|
# Figure out whether or not we have a "usleep()" function.
|
|
|
+Index: sqlite-2.8.17/src/encode.c
|
|
|
+--- sqlite-2.8.17/src/encode.c.orig 2005-04-24 00:43:22 +0200
|
|
|
++++ sqlite-2.8.17/src/encode.c 2007-02-23 15:28:03 +0100
|
|
|
+@@ -176,6 +176,8 @@
|
|
|
+ int i, e;
|
|
|
+ unsigned char c;
|
|
|
+ e = *(in++);
|
|
|
++ if (e == 0)
|
|
|
++ return 0;
|
|
|
+ i = 0;
|
|
|
+ while( (c = *(in++))!=0 ){
|
|
|
+ if( c==1 ){
|
|
|
Index: sqlite-3.3.13/Makefile.in
|
|
|
--- sqlite-3.3.13/Makefile.in.orig 2006-10-03 14:40:42 +0200
|
|
|
+++ sqlite-3.3.13/Makefile.in 2006-12-18 09:51:03 +0100
|