summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrii Simiklit <andrii.simiklit@globallogic.com>2018-09-06 17:43:51 +0300
committerEric Engestrom <eric.engestrom@intel.com>2018-09-06 17:33:27 +0100
commit267ed29288db478a47d180bd1370a4df60ddb3ef (patch)
treee78150c7f2dacecdc27d5c1968a041b4e7d7f222
parent6daba55aa19db1863ee294e5d9241c876a05dd1b (diff)
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 <eric.engestrom@intel.com> Fixes: 51691f0767f6 "darwin: Use ASL for logging" Signed-off-by: Andrii Simiklit <andrii.simiklit@globallogic.com>
-rw-r--r--src/glx/apple/apple_glx_log.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/apple/apple_glx_log.c b/src/glx/apple/apple_glx_log.c
index a3f446c26f2..ea39d30954e 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);