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

Remove an unreachable branch in malloc.c.

FossilOrigin-Name: a36b7fe92372a13ff0b6e08f1704496045c6f62a
This commit is contained in:
drh
2015-10-26 12:55:56 +00:00
parent fb785b2c2b
commit 56d90be183
3 changed files with 9 additions and 9 deletions

View File

@@ -455,7 +455,7 @@ void sqlite3_free(void *p){
** *db->pnBytesFreed.
*/
static SQLITE_NOINLINE void measureAllocationSize(sqlite3 *db, void *p){
if( p ) *db->pnBytesFreed += sqlite3DbMallocSize(db,p);
*db->pnBytesFreed += sqlite3DbMallocSize(db,p);
}
/*