Mesa (master): st/xa: Don' t call fence_reference with an unitialized fence handle as dst

Thomas Hellstrom thomash at kemper.freedesktop.org
Thu Sep 29 18:27:09 UTC 2011


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

Author: Thomas Hellstrom <thellstrom at vmware.com>
Date:   Thu Sep  1 11:19:02 2011 +0200

st/xa: Don't call fence_reference with an unitialized fence handle as dst

Signed-off-by: Thomas Hellstrom <thellstrom at vmware.com>

---

 src/gallium/state_trackers/xa/xa_context.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/state_trackers/xa/xa_context.c b/src/gallium/state_trackers/xa/xa_context.c
index 1e7a20a..1d918de 100644
--- a/src/gallium/state_trackers/xa/xa_context.c
+++ b/src/gallium/state_trackers/xa/xa_context.c
@@ -344,7 +344,7 @@ xa_solid_done(struct xa_context *ctx)
 struct xa_fence *
 xa_fence_get(struct xa_context *ctx)
 {
-    struct xa_fence *fence = malloc(sizeof(*fence));
+    struct xa_fence *fence = calloc(1, sizeof(*fence));
     struct pipe_screen *screen = ctx->xa->screen;
 
     if (!fence)




More information about the mesa-commit mailing list