aboutsummaryrefslogtreecommitdiff
path: root/src/legacy.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2006-01-09 06:29:47 +0000
committerdanielk1977 <danielk1977@noemail.net>2006-01-09 06:29:47 +0000
commite501b89adad9fef84008c30c5bb663fb9c59f79a (patch)
tree4cd5547b8b856c2d3e0871c57bce138e72ff6b27 /src/legacy.c
parent2e94d4dea54ad6c1b1539468ee517b363049bd2c (diff)
downloadsqlite-e501b89adad9fef84008c30c5bb663fb9c59f79a.tar.gz
sqlite-e501b89adad9fef84008c30c5bb663fb9c59f79a.zip
Rename DbSchema to "Schema" and SqliteTsd to "ThreadData". (CVS 2893)
FossilOrigin-Name: 82b81f69c78cb3f54634d9aea4f6a838474dc5e5
Diffstat (limited to 'src/legacy.c')
-rw-r--r--src/legacy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/legacy.c b/src/legacy.c
index 40fa8f5b0..2d928aeac 100644
--- a/src/legacy.c
+++ b/src/legacy.c
@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: legacy.c,v 1.9 2005/12/12 06:53:04 danielk1977 Exp $
+** $Id: legacy.c,v 1.10 2006/01/09 06:29:49 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -121,7 +121,7 @@ exec_out:
if( pStmt ) sqlite3_finalize(pStmt);
if( azCols ) sqliteFree(azCols);
- if( sqlite3Tsd()->mallocFailed ){
+ if( sqlite3ThreadData()->mallocFailed ){
rc = SQLITE_NOMEM;
sqlite3MallocClearFailed();
}