Mesa (master): i965/sync: Return NULL when calloc fails

Chad Versace chadversary at kemper.freedesktop.org
Thu May 7 15:13:12 UTC 2015


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

Author: Chad Versace <chad.versace at intel.com>
Date:   Tue May  5 19:05:30 2015 -0700

i965/sync: Return NULL when calloc fails

Reviewed-by: Daniel Stone <daniels at collabora.com>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/i965/intel_syncobj.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/mesa/drivers/dri/i965/intel_syncobj.c b/src/mesa/drivers/dri/i965/intel_syncobj.c
index 3bc32df..a425b9e 100644
--- a/src/mesa/drivers/dri/i965/intel_syncobj.c
+++ b/src/mesa/drivers/dri/i965/intel_syncobj.c
@@ -50,6 +50,8 @@ intel_new_sync_object(struct gl_context *ctx, GLuint id)
    struct intel_sync_object *sync;
 
    sync = calloc(1, sizeof(struct intel_sync_object));
+   if (!sync)
+      return NULL;
 
    return &sync->Base;
 }




More information about the mesa-commit mailing list