diff options
author | Thomas Hellstrom <[email protected]> | 2011-09-01 11:19:02 +0200 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2011-09-29 20:24:57 +0200 |
commit | e63f2787b6a8dd7ff7a093fea8017a0b74cac6fd (patch) | |
tree | fb327a2d464a623efede5cd1dd874627df7d5829 /src | |
parent | 5ec01ba7e85c41fce53ee5c2c3b53036923a0924 (diff) |
st/xa: Don't call fence_reference with an unitialized fence handle as dst
Signed-off-by: Thomas Hellstrom <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | 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 1e7a20ad485..1d918de974f 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) |