glspirv: drop pointless assert (size_t is unsigned)

Found by coverity

Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com>
This commit is contained in:
Dave Airlie
2018-10-05 09:20:09 +10:00
parent 600d8ecb57
commit c5c3da6c90
-2
View File
@@ -73,8 +73,6 @@ _mesa_spirv_shader_binary(struct gl_context *ctx,
struct gl_spirv_module *module;
struct gl_shader_spirv_data *spirv_data;
assert(length >= 0);
module = malloc(sizeof(*module) + length);
if (!module) {
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glShaderBinary");