aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 8f221cf..d05be50 100644
--- a/src/main.c
+++ b/src/main.c
@@ -701,7 +701,6 @@ static void ftag_common_edit(int argc, char **argv, int file_or_tag)
printf("%s: old content: %s\n", __func__, old);
printf("%s: new content: %s\n", __func__, new);
sanitize_sql_str(&new);
- /* TODO: fix isse with UTF-8 and sanitize_sql_str */
strbuild(sql, "UPDATE %s SET %s = '%s' WHERE %s = '%s';", table_name, column_name, new, name_column_name, name);
rc = sqlite3_exec(db, sql, NULL, NULL, NULL);
sqlite3_check(rc, db);