From: Vinson Lee Date: Fri, 22 Feb 2013 06:00:44 +0000 (-0800) Subject: st/xvmc/tests: Ensure colorkey is initialized. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2fa9e4c97cd7580010a8aa2eb3026e8f2bdb0035;p=mesa.git st/xvmc/tests: Ensure colorkey is initialized. Fixes uninitialized scalar variable defect reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c b/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c index 4c37b8dade7..fe858021936 100644 --- a/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c +++ b/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c @@ -222,6 +222,10 @@ int main(int argc, char **argv) Atom xv_colorkey = XInternAtom(display, "XV_COLORKEY", 0); XvGetPortAttribute(display, port_num, xv_colorkey, &colorkey); } + else + { + colorkey = 0; + } root = XDefaultRootWindow(display); window = XCreateSimpleWindow(display, root, 0, 0, config.output_width, config.output_height, 0, 0, colorkey);