1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Fix a minor problem in the Tcl "incrblob" command. This does not affect the SQLite core.

FossilOrigin-Name: e96feccc21d9b858f076960e029b615809243d0cc3f95db75180feb01887451f
This commit is contained in:
dan
2022-06-01 14:32:05 +00:00
parent 6d013d890e
commit f74f4ed5b5
4 changed files with 48 additions and 10 deletions

View File

@@ -2965,7 +2965,7 @@ deserialize_error:
}
if( objc==(6+isReadonly) ){
zDb = Tcl_GetString(objv[2]);
zDb = Tcl_GetString(objv[2+isReadonly]);
}
zTable = Tcl_GetString(objv[objc-3]);
zColumn = Tcl_GetString(objv[objc-2]);