Module: Mesa Branch: master Commit: 35c522dce461a7d18a471e681413781da702d4b0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=35c522dce461a7d18a471e681413781da702d4b0
Author: Marek Olšák <[email protected]> Date: Thu Mar 21 19:29:29 2013 +0100 radeonsi: fix crash while binding a NULL constant buffer Reviewed-by: Michel Dänzer <[email protected]> --- src/gallium/drivers/radeonsi/si_state.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 7eac477..bdd41b4 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -2491,7 +2491,7 @@ static void si_set_constant_buffer(struct pipe_context *ctx, uint shader, uint i /* Note that the state tracker can unbind constant buffers by * passing NULL here. */ - if (cb == NULL) + if (cb == NULL || (!cb->buffer && !cb->user_buffer)) return; pm4 = CALLOC_STRUCT(si_pm4_state); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
