mesa: Ensure gl_sync_object is fully initialized.
authorVinson Lee <vlee@freedesktop.org>
Tue, 10 Sep 2013 00:28:35 +0000 (17:28 -0700)
committerVinson Lee <vlee@freedesktop.org>
Tue, 10 Sep 2013 17:54:26 +0000 (10:54 -0700)
278372b47e4db8a022d57f60302eec74819e9341 added the uninitialized pointer
field gl_sync_object:Label. A free of this pointer, added in commit
6d8dd59cf53d2f47b817d79204a52bb3a46e8c77, resulted in a crash.

This patch fixes piglit ARB_sync regressions with swrast introduced by
6d8dd59cf53d2f47b817d79204a52bb3a46e8c77.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/main/syncobj.c

index 92c7cb0e149211c2c7bfc61ebe4831ab03442653..987d4f57cbd7e1c42058aa7806358f046c6595f6 100644 (file)
@@ -71,7 +71,7 @@
 static struct gl_sync_object *
 _mesa_new_sync_object(struct gl_context *ctx, GLenum type)
 {
-   struct gl_sync_object *s = MALLOC_STRUCT(gl_sync_object);
+   struct gl_sync_object *s = CALLOC_STRUCT(gl_sync_object);
    (void) ctx;
    (void) type;