From: Marek Olšák Date: Sat, 12 Mar 2011 07:49:54 +0000 (+0100) Subject: st/dri: fix warning: ‘bind’ may be used uninitialized in this function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1868d21c8ee1fdf775f3e3ddbb1c48fa89d5850c;p=mesa.git st/dri: fix warning: ‘bind’ may be used uninitialized in this function --- diff --git a/src/gallium/state_trackers/dri/drm/dri2.c b/src/gallium/state_trackers/dri/drm/dri2.c index a5c94b4166b..30326a23d6c 100644 --- a/src/gallium/state_trackers/dri/drm/dri2.c +++ b/src/gallium/state_trackers/dri/drm/dri2.c @@ -270,7 +270,7 @@ dri2_allocate_buffer(__DRIscreen *sPriv, struct pipe_resource templ; enum st_attachment_type statt; enum pipe_format pf; - unsigned bind; + unsigned bind = 0; struct winsys_handle whandle; switch (attachment) {