aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-07-16 12:25:57 +0200
committerTristan Riehs <tristan.riehs@inria.fr>2026-07-16 12:26:17 +0200
commitc9115ab75542848843dafd9de20f16b8c72420a9 (patch)
treea4c4449bb25427425e95e7580e0697d09d8c4ac6 /src
parentf29e8db46c10b90acccd4205e595c888d3515cb9 (diff)
Remove utf-8 todo
The problem disappeared, I don't know why.
Diffstat (limited to 'src')
-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);