diff options
author | Andrii Simiklit <[email protected]> | 2018-09-06 17:43:54 +0300 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2018-09-06 17:33:27 +0100 |
commit | 2930b76cfe1e13e84ac0d88f9c6d709a5a8d4c18 (patch) | |
tree | 0b51aa659964c30192f2825c7db9de1e0e4775ac /src/util | |
parent | 65cfe698b0f4ba412198d212c14481a60c1b8389 (diff) |
mesa/util: add missing va_end() after va_copy()
MSDN:
"va_end must be called on each argument list that's initialized
with va_start or va_copy before the function returns."
Reviewed-by: Eric Engestrom <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=107810
Fixes: c6267ebd6c8a "gallium/util: Stop bundling our snprintf implementation."
Signed-off-by: Andrii Simiklit <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/u_string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/u_string.h b/src/util/u_string.h index fb43ed0afc3..e4081466459 100644 --- a/src/util/u_string.h +++ b/src/util/u_string.h @@ -81,6 +81,7 @@ util_vsnprintf(char *str, size_t size, const char *format, va_list ap) if (ret < 0) { ret = _vscprintf(format, ap_copy); } + va_end(ap_copy); return ret; } |