mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 10:20:22 +01:00
ralloc: Add missing va_end following va_copy.
(cherry picked from commit cde443e0b9)
This commit is contained in:
parent
77e3c82ad1
commit
546aade286
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue