diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2025-11-16 09:34:58 +0100 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2025-11-16 09:34:58 +0100 |
| commit | b684249ec8cb1be64bab82cedc0a053013cb658d (patch) | |
| tree | 9390c6b4b44375ffc74d8b303ea53059ac3778f5 | |
| parent | 71c0226cdfd6a06614c4d2fa77b8f49133d31c8e (diff) | |
Add missing free
| -rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -480,6 +480,7 @@ static void ftag_query(int argc, char **argv) rc = sqlite3_exec(db, sql, print_all_callback, &print_header, NULL); sqlite3_check(rc, db); sqlite3_close(db); + free(tags); } /* Check that the tag we are trying to create does not exist yet. If this |
