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

Improvements in threadtest.c (for Unix) and some minor bug fixes that result

from the better testing. (CVS 776)

FossilOrigin-Name: 326e0983c34b584a3c4a2300399bff0a8281b9f8
This commit is contained in:
drh
2002-11-01 01:55:36 +00:00
parent 194a7b6469
commit 7bc09d3111
5 changed files with 82 additions and 32 deletions

View File

@@ -36,7 +36,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
** $Id: vdbe.c,v 1.182 2002/10/30 22:42:59 drh Exp $
** $Id: vdbe.c,v 1.183 2002/11/01 01:55:38 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -4874,7 +4874,7 @@ case OP_MemLoad: {
if( aStack[tos].flags & STK_Str ){
zStack[tos] = p->aMem[i].z;
aStack[tos].flags |= STK_Ephem;
aStack[tos].flags &= ~STK_Dyn;
aStack[tos].flags &= ~(STK_Dyn|STK_Static);
}
break;
}
@@ -5306,6 +5306,7 @@ default: {
fprintf(p->trace, " ???");
}
}
if( rc!=0 ) fprintf(p->trace," rc=%d",rc);
fprintf(p->trace,"\n");
}
#endif