On Fri, 2005-02-18 at 22:54 +0100, Paul J Stevens wrote:
> Garn,
>
> Patch applied and create file added to cvs.
>
> CVS diffs are a pain though. Please provide unified diffs I you can.
Very well.
> There's also a char * buffer problem with insertion.
I see it now; must have missed a :w someplace.
Users seem to be built fine now:
--- sqlite/dbsqlite.c 2005/02/18 21:33:25 1.2
+++ sqlite/dbsqlite.c 2005/02/18 22:03:47
@@ -172,8 +172,8 @@
{
unsigned long did = 0;
while (length > 0) {
- if (*from == '\'') *to++ = *from;
- *to++ = *from;
+ if (*from == '\'') *to++ = *from++;
+ *to++ = *from++;
length--;
did++;
}