From: Marek Olšák Date: Tue, 25 Feb 2020 01:46:02 +0000 (-0500) Subject: glthread: fix a crash with incorrect glShaderSource parameters X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57a9c1ee478c5af8cc2f9ffe78b24917deebb1b3;p=mesa.git glthread: fix a crash with incorrect glShaderSource parameters Reviewed-by: Timothy Arceri Part-of: --- diff --git a/src/mesa/main/marshal.c b/src/mesa/main/marshal.c index 9c9d6720878..b2935f63753 100644 --- a/src/mesa/main/marshal.c +++ b/src/mesa/main/marshal.c @@ -111,7 +111,7 @@ _mesa_marshal_ShaderSource(GLuint shader, GLsizei count, measure_ShaderSource_strings(count, string, length, length_tmp); size_t total_cmd_size = fixed_cmd_size + length_size + total_string_length; - if (total_cmd_size <= MARSHAL_MAX_CMD_SIZE) { + if (total_cmd_size <= MARSHAL_MAX_CMD_SIZE && count > 0) { struct marshal_cmd_ShaderSource *cmd = _mesa_glthread_allocate_command(ctx, DISPATCH_CMD_ShaderSource, total_cmd_size);