Module: Mesa Branch: staging/18.1 Commit: adac8878e12fde65bd3360c4012c7bf851c39bcd URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=adac8878e12fde65bd3360c4012c7bf851c39bcd
Author: Andrii Simiklit <[email protected]> Date: Thu Sep 6 17:43:51 2018 +0300 apple/glx/log: added missing va_end() after va_copy() Each invocation of va_copy() must be matched by a corresponding invocation of va_end() Reviewed-by: Eric Engestrom <[email protected]> Fixes: 51691f0767f6 "darwin: Use ASL for logging" Signed-off-by: Andrii Simiklit <[email protected]> (cherry picked from commit 267ed29288db478a47d180bd1370a4df60ddb3ef) --- src/glx/apple/apple_glx_log.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glx/apple/apple_glx_log.c b/src/glx/apple/apple_glx_log.c index a3f446c26f..ea39d30954 100644 --- a/src/glx/apple/apple_glx_log.c +++ b/src/glx/apple/apple_glx_log.c @@ -97,6 +97,7 @@ void _apple_glx_vlog(int level, const char *file, const char *function, fprintf(stderr, "%-9s %24s:%-4d %s(%"PRIu64"): ", _asl_level_string(level), file, line, function, thread); vfprintf(stderr, fmt, args2); + va_end(args2); } msg = asl_new(ASL_TYPE_MSG); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
