diff --git a/src/gallium/winsys/r600/drm/radeon_ctx.c b/src/gallium/winsys/r600/drm/radeon_ctx.c index ca3e40ffdc1..7ccb5245905 100644 --- a/src/gallium/winsys/r600/drm/radeon_ctx.c +++ b/src/gallium/winsys/r600/drm/radeon_ctx.c @@ -86,7 +86,7 @@ struct radeon_ctx *radeon_ctx_init(struct radeon *radeon) radeon_ctx_fini(ctx); return NULL; } - ctx->bo = malloc(sizeof(void *) * RADEON_CTX_MAX_PM4); + ctx->bo = calloc(sizeof(void *), RADEON_CTX_MAX_PM4); if (ctx->bo == NULL) { radeon_ctx_fini(ctx); return NULL;