diff options
author | danielk1977 <danielk1977@noemail.net> | 2006-01-09 06:29:47 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2006-01-09 06:29:47 +0000 |
commit | e501b89adad9fef84008c30c5bb663fb9c59f79a (patch) | |
tree | 4cd5547b8b856c2d3e0871c57bce138e72ff6b27 /src/callback.c | |
parent | 2e94d4dea54ad6c1b1539468ee517b363049bd2c (diff) | |
download | sqlite-e501b89adad9fef84008c30c5bb663fb9c59f79a.tar.gz sqlite-e501b89adad9fef84008c30c5bb663fb9c59f79a.zip |
Rename DbSchema to "Schema" and SqliteTsd to "ThreadData". (CVS 2893)
FossilOrigin-Name: 82b81f69c78cb3f54634d9aea4f6a838474dc5e5
Diffstat (limited to 'src/callback.c')
-rw-r--r-- | src/callback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callback.c b/src/callback.c index 4995ec36b..d753a4d20 100644 --- a/src/callback.c +++ b/src/callback.c @@ -13,7 +13,7 @@ ** This file contains functions used to access the internal hash tables ** of user defined functions and collation sequences. ** -** $Id: callback.c,v 1.7 2005/12/14 22:51:17 drh Exp $ +** $Id: callback.c,v 1.8 2006/01/09 06:29:48 danielk1977 Exp $ */ #include "sqliteInt.h" @@ -177,7 +177,7 @@ static CollSeq *findCollSeqEntry( ** return the pColl pointer to be deleted (because it wasn't added ** to the hash table). */ - assert( !pDel || (sqlite3Tsd()->mallocFailed && pDel==pColl) ); + assert( !pDel || (sqlite3ThreadData()->mallocFailed && pDel==pColl) ); sqliteFree(pDel); } } |