commit | 65bafa657014799fd48f613a4629392aca7189ab | [log] [tgz] |
---|---|---|
author | drh <drh@noemail.net> | Wed Sep 29 01:54:00 2010 +0000 |
committer | drh <drh@noemail.net> | Wed Sep 29 01:54:00 2010 +0000 |
tree | 9b1abbb74dcc8d9179a35edf0078758db789e9d6 | |
parent | 8a8a0d1d607108bafffe8262e934fbd2f7d48f09 [diff] [blame] |
Updates to sqlite3_finalize() documentation. FossilOrigin-Name: 8c5994cf8e5ae0c1cb8f655ac83e52e668e75c86
diff --git a/src/vdbeapi.c b/src/vdbeapi.c index 8ae7c52..96a19e0 100644 --- a/src/vdbeapi.c +++ b/src/vdbeapi.c
@@ -65,6 +65,8 @@ int sqlite3_finalize(sqlite3_stmt *pStmt){ int rc; if( pStmt==0 ){ + /* IMPLEMENTATION-OF: R-57228-12904 Invoking sqlite3_finalize() on a NULL + ** pointer is a harmless no-op. */ rc = SQLITE_OK; }else{ Vdbe *v = (Vdbe*)pStmt;