ralloc: Add missing va_end following va_copy.

(cherry picked from commit cde443e0b9)
This commit is contained in:
Vinson Lee 2011-02-03 22:10:16 -08:00 committed by Kenneth Graunke
parent 77e3c82ad1
commit 546aade286

View file

@ -387,6 +387,8 @@ printf_length(const char *fmt, va_list untouched_args)
size = vsnprintf(&junk, 1, fmt, args);
assert(size >= 0);
va_end(args);
return size;
}