diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-02-06 05:26:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:44:42 -0500 |
commit | 8538af1107a6e894d4941708b77e79fac587e35d (patch) | |
tree | 1494d0029526a4c9c7a99a7906749b382a7cab28 /source4/lib/replace | |
parent | 80d3b780e566dcb0a23fe4f1a89749acf4c3f470 (diff) | |
download | samba-8538af1107a6e894d4941708b77e79fac587e35d.tar.gz samba-8538af1107a6e894d4941708b77e79fac587e35d.tar.bz2 samba-8538af1107a6e894d4941708b77e79fac587e35d.zip |
r21174: many thanks to Paul Wayper for pointing out that C99 requires a
matching va_end() for each va_copy(). This doesn't matter for most
architectures, but there could be some obscure ones where it does
matter.
some of this should be ported to Samba3
(This used to be commit 21eb316473486cb6b73bb3ff9c5f3a44ecd57e4a)
Diffstat (limited to 'source4/lib/replace')
-rw-r--r-- | source4/lib/replace/snprintf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/replace/snprintf.c b/source4/lib/replace/snprintf.c index b38d8dad34..9f8a7657e5 100644 --- a/source4/lib/replace/snprintf.c +++ b/source4/lib/replace/snprintf.c @@ -742,6 +742,8 @@ static int dopr(char *buffer, size_t maxlen, const char *format, va_list args_in ret = currlen; done: + va_end(args); + while (chunks) { cnk = chunks->next; free(chunks); @@ -1260,16 +1262,16 @@ static int add_cnk_list_entry(struct pr_chunk_x **list, va_list ap2; VA_COPY(ap2, ap); - ret = vsnprintf(NULL, 0, format, ap2); + va_end(ap2); if (ret <= 0) return ret; (*ptr) = (char *)malloc(ret+1); if (!*ptr) return -1; VA_COPY(ap2, ap); - ret = vsnprintf(*ptr, ret+1, format, ap2); + va_end(ap2); return ret; } |