summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2018-09-18 15:35:20 +0200
committerTim Rühsen <tim.ruehsen@gmx.de>2018-09-20 07:59:57 +0000
commit49fda83743ed3084c2403bfbde6b600154e00a75 (patch)
treec9a81bce04d4fc8da0cac7b3d35c4cdf9217ddae
parent96f2e1923a8c32dcfe21e6a7b64b5861f4f31bdf (diff)
downloadgnutls-tmp-res-prio.tar.gz
Fix issue introduced in 20886264fetmp-res-prio
This makes _gnutls_resolve_priorities() return a string that is always allocated with the gnutls memory functions. Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
-rw-r--r--lib/priority.c6
-rw-r--r--tests/system-prio-file.c3
2 files changed, 4 insertions, 5 deletions
diff --git a/lib/priority.c b/lib/priority.c
index 1991635d86..6a4ccc2f46 100644
--- a/lib/priority.c
+++ b/lib/priority.c
@@ -1056,7 +1056,7 @@ void _gnutls_unload_system_priorities(void)
* priorities, appended with any additional present in
* the priorities string.
*
- * The returned string must be released using free().
+ * The returned string must be released using gnutls_free().
*/
char *_gnutls_resolve_priorities(const char* priorities)
{
@@ -1140,7 +1140,7 @@ size_t n, n2 = 0, line_size;
if (additional)
n2 = strlen(additional);
- ret = malloc(n+n2+1+1);
+ ret = gnutls_malloc(n+n2+1+1);
if (ret == NULL) {
goto finish;
}
@@ -1859,7 +1859,7 @@ gnutls_priority_init(gnutls_priority_t * priority_cache,
goto error_cleanup;
}
- free(darg);
+ gnutls_free(darg);
return 0;
diff --git a/tests/system-prio-file.c b/tests/system-prio-file.c
index e0dfa9460c..4368bd0018 100644
--- a/tests/system-prio-file.c
+++ b/tests/system-prio-file.c
@@ -57,7 +57,7 @@ try_prio(const char *prio, const char *expected_str)
}
ok:
- free(p);
+ gnutls_free(p);
gnutls_global_deinit();
}
@@ -84,4 +84,3 @@ void doit(void)
try_prio("@HELLONO:+AES-128-CBC", NULL);
try_prio("@HELLONO,:+AES-128-CBC", NULL);
}
-