Mesa (master): st/mesa: Silence uninitialized variable warning in st_cb_bitmap.c.

Vinson Lee vlee at kemper.freedesktop.org
Thu Feb 11 02:39:49 UTC 2010


Module: Mesa
Branch: master
Commit: 218590f70723ce0683f70a0c7aab229f9bbd89a6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=218590f70723ce0683f70a0c7aab229f9bbd89a6

Author: Vinson Lee <vlee at vmware.com>
Date:   Wed Feb 10 18:37:46 2010 -0800

st/mesa: Silence uninitialized variable warning in st_cb_bitmap.c.

---

 src/mesa/state_tracker/st_cb_bitmap.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/mesa/state_tracker/st_cb_bitmap.c b/src/mesa/state_tracker/st_cb_bitmap.c
index 85420a9..25430bb 100644
--- a/src/mesa/state_tracker/st_cb_bitmap.c
+++ b/src/mesa/state_tracker/st_cb_bitmap.c
@@ -637,7 +637,7 @@ accum_bitmap(struct st_context *st,
              const GLubyte *bitmap )
 {
    struct bitmap_cache *cache = st->bitmap.cache;
-   int px = -999, py;
+   int px = -999, py = -999;
    const GLfloat z = st->ctx->Current.RasterPos[2];
 
    if (width > BITMAP_CACHE_WIDTH ||
@@ -671,6 +671,7 @@ accum_bitmap(struct st_context *st,
    }
 
    assert(px != -999);
+   assert(py != -999);
 
    if (x < cache->xmin)
       cache->xmin = x;




More information about the mesa-commit mailing list