diff options
author | dan <dan@noemail.net> | 2010-07-26 12:36:29 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2010-07-26 12:36:29 +0000 |
commit | eb8603a7c49bb41b341eeaba0f0a8f691e38de02 (patch) | |
tree | 03938b0780b5a97492638af8eb13edc7a096736a /src | |
parent | d19c933e8e5a8159f3857759d0b32756ace1c90e (diff) | |
download | sqlite-eb8603a7c49bb41b341eeaba0f0a8f691e38de02.tar.gz sqlite-eb8603a7c49bb41b341eeaba0f0a8f691e38de02.zip |
Remove an assert() that uses a variable removed earlier.
FossilOrigin-Name: c04907e69820bd19f647c5f555327e0058db4e6d
Diffstat (limited to 'src')
-rw-r--r-- | src/status.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/status.c b/src/status.c index 3ea8a95cb..8d24551b3 100644 --- a/src/status.c +++ b/src/status.c @@ -147,7 +147,6 @@ int sqlite3_db_status( int i; /* Used to iterate through schemas */ int nByte = 0; /* Used to accumulate return value */ - assert( db->pSubProgram==0 ); db->pnBytesFreed = &nByte; for(i=0; i<db->nDb; i++){ Schema *pSchema = db->aDb[i].pSchema; |