r600g: fix a coverity defect in streamout code

Reported by Ilia Mirkin.
This commit is contained in:
Marek Olšák 2015-05-26 19:07:35 +02:00
parent 6bf3729a3f
commit 6aff87bb01

View file

@ -1337,7 +1337,7 @@ static int emit_streamout(struct r600_shader_ctx *ctx, struct pipe_stream_output
int i, j, r;
/* Sanity checking. */
if (so->num_outputs > PIPE_MAX_SHADER_OUTPUTS) {
if (so->num_outputs > PIPE_MAX_SO_OUTPUTS) {
R600_ERR("Too many stream outputs: %d\n", so->num_outputs);
r = -EINVAL;
goto out_err;