commit | aff1a57f4d19786ea07544d79eb82124d1122c49 | [log] [tgz] |
---|---|---|
author | dan <dan@noemail.net> | Tue Nov 17 21:09:56 2020 +0000 |
committer | dan <dan@noemail.net> | Tue Nov 17 21:09:56 2020 +0000 |
tree | 60fc53eaea46ecd7945d033bef484b9751c5177b | |
parent | 12c9994659dc1f561f961f3dbbad6e11ec8d963c [diff] [blame] |
Fix trivial memory leaks in the shell and sqldiff programs. FossilOrigin-Name: 272793e5edc47e431be77d589718a001f2696869e3e15f1371a1890645a995a7
diff --git a/tool/sqldiff.c b/tool/sqldiff.c index 85cae56..123d5b4 100644 --- a/tool/sqldiff.c +++ b/tool/sqldiff.c
@@ -473,6 +473,7 @@ fprintf(out, "%s;\n", sqlite3_column_text(pStmt,0)); } sqlite3_finalize(pStmt); + sqlite3_free(zId); }