1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

2.0.7 (CVS 292)

FossilOrigin-Name: a835658e507fc7d0c684959c0f0afb9018b6a8d4
This commit is contained in:
drh
2001-10-20 12:30:10 +00:00
parent af27914d2a
commit 01a346616f
9 changed files with 92 additions and 21 deletions

View File

@@ -30,7 +30,7 @@
** But other routines are also provided to help in building up
** a program instruction by instruction.
**
** $Id: vdbe.c,v 1.87 2001/10/19 16:44:57 drh Exp $
** $Id: vdbe.c,v 1.88 2001/10/20 12:30:11 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1457,7 +1457,7 @@ case OP_Precision: {
POPSTACK;
Release(p, nos);
zStack[nos] = sqliteStrDup(zBuf);
aStack[nos].n = strlen(zStack[tos]) + 1;
aStack[nos].n = strlen(zStack[nos]) + 1;
aStack[nos].flags = STK_Str | STK_Dyn;
break;
}