1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Fold in a 64-bit change that came from the PHP people. (CVS 1743)

FossilOrigin-Name: b69b4fe8adff83a26e3566613bea8b477a26e8a4
This commit is contained in:
drh
2004-06-26 14:46:39 +00:00
parent b5548a8b20
commit b089c0b722
3 changed files with 10 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
** ROLLBACK
** PRAGMA
**
** $Id: build.c,v 1.233 2004/06/26 08:38:25 danielk1977 Exp $
** $Id: build.c,v 1.234 2004/06/26 14:46:40 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1452,7 +1452,7 @@ void sqlite3CreateView(
sEnd.z += sEnd.n;
}
sEnd.n = 0;
n = ((int)sEnd.z) - (int)pBegin->z;
n = sEnd.z - pBegin->z;
z = pBegin->z;
while( n>0 && (z[n-1]==';' || isspace(z[n-1])) ){ n--; }
sEnd.z = &z[n-1];