OSDN Git Service

svga: init pointer to NULL to silence MSVC warning
authorBrian Paul <brianp@vmware.com>
Fri, 22 Jun 2012 15:43:18 +0000 (09:43 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 22 Jun 2012 23:24:37 +0000 (17:24 -0600)
src/gallium/drivers/svga/svga_screen_cache.c

index 13df37f..c8562b2 100644 (file)
@@ -167,7 +167,7 @@ svga_screen_cache_shrink(struct svga_screen *svgascreen,
 {
    struct svga_host_surface_cache *cache = &svgascreen->cache;
    struct svga_winsys_screen *sws = svgascreen->sws;
-   struct svga_host_surface_cache_entry *entry, *next_entry;
+   struct svga_host_surface_cache_entry *entry = NULL, *next_entry;
 
    /* Walk over the list of unused buffers in reverse order: from oldest
     * to newest.