[965] Don't segfault on INTEL_DEBUG=batch when a surface buffer is NULL.
authorEric Anholt <eric@anholt.net>
Tue, 26 Feb 2008 21:28:51 +0000 (13:28 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 26 Feb 2008 21:58:01 +0000 (13:58 -0800)
src/mesa/drivers/dri/i965/brw_state_dump.c

index 9eb27cc..319dac8 100644 (file)
@@ -94,6 +94,10 @@ static void dump_wm_surface_state(struct brw_context *brw)
       struct brw_surface_state *surf;
       char name[20];
 
+      if (surf_bo == NULL) {
+        fprintf(stderr, "WM SS%d: NULL\n", i);
+        continue;
+      }
       dri_bo_map(surf_bo, GL_FALSE);
       surfoff = surf_bo->offset;
       surf = (struct brw_surface_state *)(surf_bo->virtual);