From: Christian König Date: Tue, 7 Jun 2011 19:15:58 +0000 (+0200) Subject: xvmc: fix some warning about uninitialized vars X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b02f9e67b83e40019d6b07b9a035ba5d5042688;p=mesa.git xvmc: fix some warning about uninitialized vars --- diff --git a/src/gallium/state_trackers/xorg/xvmc/context.c b/src/gallium/state_trackers/xorg/xvmc/context.c index a28c3f7a424..fbfa1afe44c 100644 --- a/src/gallium/state_trackers/xorg/xvmc/context.c +++ b/src/gallium/state_trackers/xorg/xvmc/context.c @@ -53,7 +53,7 @@ static Status Validate(Display *dpy, XvPortID port, int surface_type_id, XvAdaptorInfo *adaptor_info; unsigned int num_adaptors; int num_types; - unsigned int max_width, max_height; + unsigned int max_width = 0, max_height = 0; Status ret; assert(dpy);