diff options
Diffstat (limited to 'src/common/strlib.c')
-rw-r--r-- | src/common/strlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/strlib.c b/src/common/strlib.c index 5580124e1..cdb092cfa 100644 --- a/src/common/strlib.c +++ b/src/common/strlib.c @@ -969,7 +969,7 @@ int StringBuf_Vprintf(StringBuf* self, const char* fmt, va_list ap) size = self->max_ - (self->ptr_ - self->buf_); va_copy(apcopy, ap); n = vsnprintf(self->ptr_, size, fmt, ap); - va_end(ap); + va_end(apcopy); /* If that worked, return the length. */ if( n > -1 && n < size ) { |