diff options
author | drh <> | 2024-01-11 14:13:17 +0000 |
---|---|---|
committer | drh <> | 2024-01-11 14:13:17 +0000 |
commit | e5b2132df69e43ebe51df3a400dc2aba24f5fd29 (patch) | |
tree | 566fb217bb2e4d31fc32dd0f4b4dfbd231bbe857 /ext/session/sqlite3session.c | |
parent | c08a8a33d316b0b41fa1bda19b2ea51b59c49cb2 (diff) | |
download | sqlite-e5b2132df69e43ebe51df3a400dc2aba24f5fd29.tar.gz sqlite-e5b2132df69e43ebe51df3a400dc2aba24f5fd29.zip |
Fix a comment in sessions. No functional changes.
[forum:/forumpost/8c20dc935b|Forum post 8c20dc935b].
FossilOrigin-Name: b0eb6d3628c1f70399a22d9fd3b79a796bc343adfeba50515440db609565961a
Diffstat (limited to 'ext/session/sqlite3session.c')
-rw-r--r-- | ext/session/sqlite3session.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/session/sqlite3session.c b/ext/session/sqlite3session.c index 4f682a13d..acb945194 100644 --- a/ext/session/sqlite3session.c +++ b/ext/session/sqlite3session.c @@ -2348,9 +2348,7 @@ void sqlite3session_delete(sqlite3_session *pSession){ ** associated hash-tables. */ sessionDeleteTable(pSession, pSession->pTable); - /* Assert that all allocations have been freed and then free the - ** session object itself. */ - // assert( pSession->nMalloc==0 ); + /* Free the session object. */ sqlite3_free(pSession); } |