aboutsummaryrefslogtreecommitdiff
path: root/lib/dynbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dynbuf.c')
-rw-r--r--lib/dynbuf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/dynbuf.c b/lib/dynbuf.c
index 0b1cf9afd..bd3b9356c 100644
--- a/lib/dynbuf.c
+++ b/lib/dynbuf.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2020 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -99,8 +99,7 @@ static CURLcode dyn_nappend(struct dynbuf *s,
include that as well when it uses this code */
void *p = realloc(s->bufr, a);
if(!p) {
- Curl_safefree(s->bufr);
- s->leng = s->allc = 0;
+ Curl_dyn_free(s);
return CURLE_OUT_OF_MEMORY;
}
s->bufr = p;