about summary refs log tree commit diff stats
path: root/src/tools/http_upload.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-07-02 11:31:54 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-07-02 11:34:12 +0200
commite5ac12afa63457316793fa797d1a04202483ea05 (patch)
tree1b959a098338a89083c48f6310de7960cfffb4c9 /src/tools/http_upload.c
parent9774b0c5509193027d4f68df9dcb862455699cfc (diff)
downloadprofani-tty-e5ac12afa63457316793fa797d1a04202483ea05.tar.gz
Remove prefs_free_string()
It just does a free.
Related to b580b9ef119045f142fa4baa9689a1c5ce8864ef
Diffstat (limited to 'src/tools/http_upload.c')
-rw-r--r--src/tools/http_upload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/http_upload.c b/src/tools/http_upload.c
index f126a72d..f52706e5 100644
--- a/src/tools/http_upload.c
+++ b/src/tools/http_upload.c
@@ -236,7 +236,7 @@ end:
     free(output.buffer);
 
     pthread_mutex_lock(&lock);
-    prefs_free_string(cert_path);
+    g_free(cert_path);
 
     if (err) {
         char *msg;