diff options
author | Michael Vetter <jubalh@iodoru.org> | 2020-07-02 11:31:54 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2020-07-02 11:34:12 +0200 |
commit | e5ac12afa63457316793fa797d1a04202483ea05 (patch) | |
tree | 1b959a098338a89083c48f6310de7960cfffb4c9 /src/tools | |
parent | 9774b0c5509193027d4f68df9dcb862455699cfc (diff) | |
download | profani-tty-e5ac12afa63457316793fa797d1a04202483ea05.tar.gz |
Remove prefs_free_string()
It just does a free. Related to b580b9ef119045f142fa4baa9689a1c5ce8864ef
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/http_upload.c | 2 |
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; |