summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/String.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util/String.c b/src/util/String.c
index 23be0987..7016fa9b 100644
--- a/src/util/String.c
+++ b/src/util/String.c
@@ -268,7 +268,7 @@ int Util_SplitString(char **before, char **after, const char *string, const char
@@*/
char *Util_Strdup(const char *s)
{
- char *retstr=NULL;
+ char *retstr;
retstr = (char*) malloc((strlen(s)+1)*sizeof(char));
if(retstr)
@@ -616,6 +616,8 @@ int Util_asprintf(char **buffer, const char *fmt, ...)
count = Util_vsnprintf(NULL, 0, fmt, args);
+ va_end(args);
+
*buffer = (char *)malloc(count+1);
if(*buffer)
@@ -692,6 +694,8 @@ int Util_asnprintf(char **buffer, size_t size, const char *fmt, ...)
count = Util_vsnprintf(NULL, 0, fmt, args);
+ va_end(args);
+
if(count+1 > size)
{
/* Use free followed by malloc as realloc may copy memory