diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-11-14 19:35:45 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-11-14 19:35:45 +0100 |
commit | df5520aa2dae5b3ce7abf8733dcdd152898af163 (patch) | |
tree | 00d3047bfb14f682bfb5a21010c731ed649bfed7 /app/dynstring/dynstring.c | |
parent | df247efec654e512242e4f4f1b0212034f9e01fe (diff) | |
parent | ec3c0f6f6e7153fa797dc57a0e95779cbc63a23b (diff) |
Merge branch 'release/debian/1_5.3.0GA-1'debian/1_5.3.0GA-1
Diffstat (limited to 'app/dynstring/dynstring.c')
-rw-r--r-- | app/dynstring/dynstring.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/dynstring/dynstring.c b/app/dynstring/dynstring.c index fd50a0b..ab30f5f 100644 --- a/app/dynstring/dynstring.c +++ b/app/dynstring/dynstring.c @@ -2,9 +2,6 @@ * Library for dynamic string functions */ -#ifdef HAVE_MALLOC_H -#include <malloc.h> -#endif #include <stdarg.h> #include <memory.h> #include <string.h> @@ -240,7 +237,7 @@ void DynStringFree(DynString *s) /* Create a new string as a copy of an old one */ DynString *DynStringDupStr(DynString *s2, DynString *s) { - DynString nas = NaS; +// DynString nas = NaS; /* Not a string? */ if (isnas(s)) { @@ -445,7 +442,7 @@ void DynStringPrintf(DynString *s, const char *fmt, ...) { va_list v; size_t len; - DynString nas = NaS; +// DynString nas = NaS; /* Are we not a string? */ if (isnas(s)) { |