Browse Source

mesa: added null ptr checks

tags/mesa_20090313
Brian Paul 17 years ago
parent
commit
9d94d133b0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/mesa/shader/prog_uniform.c

+ 2
- 2
src/mesa/shader/prog_uniform.c View File

_mesa_lookup_uniform(const struct gl_uniform_list *list, const char *name) _mesa_lookup_uniform(const struct gl_uniform_list *list, const char *name)
{ {
GLuint i; GLuint i;
for (i = 0; i < list->NumUniforms; i++) {
for (i = 0; list && i < list->NumUniforms; i++) {
if (!_mesa_strcmp(list->Uniforms[i].Name, name)) { if (!_mesa_strcmp(list->Uniforms[i].Name, name)) {
return i; return i;
} }
{ {
GLint max = 0; GLint max = 0;
GLuint i; GLuint i;
for (i = 0; i < list->NumUniforms; i++) {
for (i = 0; list && i < list->NumUniforms; i++) {
GLuint len = _mesa_strlen(list->Uniforms[i].Name); GLuint len = _mesa_strlen(list->Uniforms[i].Name);
if (len > (GLuint)max) if (len > (GLuint)max)
max = len; max = len;

Loading…
Cancel
Save