diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/shader_query.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/shader_query.cpp b/src/mesa/main/shader_query.cpp index 6d73e3bdcf2..caaa78caa53 100644 --- a/src/mesa/main/shader_query.cpp +++ b/src/mesa/main/shader_query.cpp @@ -1010,11 +1010,11 @@ program_resource_top_level_array_stride(struct gl_shader_program *shProg, } else { array_stride = 0; } - goto found_top_level_array_size; + goto found_top_level_array_stride; } } } -found_top_level_array_size: +found_top_level_array_stride: free(interface_name); free(var_name); return array_stride; |