ast_to_hir: Fix crash when a function shadows a variable.
authorKenneth Graunke <kenneth@whitecape.org>
Fri, 20 Aug 2010 09:04:52 +0000 (02:04 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 20 Aug 2010 09:46:05 +0000 (02:46 -0700)
The code would attempt to add a new signature to the ir_function, which
didn't exist.  Simply bailing out/returning early seems reasonable.

Fixes piglit test redeclaration-02.vert, and fixes a crash in
redeclaration-03.vert (the test still fails).

src/glsl/ast_to_hir.cpp

index bd1ab78d4aa0c91754343d4c32d8450e545ce0c6..0d2c471f45b2854b8e81c45ae33660f885618e36 100644 (file)
@@ -2149,7 +2149,6 @@ ast_function::hir(exec_list *instructions,
            YYLTYPE loc = this->get_location();
 
            _mesa_glsl_error(& loc, state, "function `%s' redefined", name);
-           sig = NULL;
         }
       }
    } else if (state->symbols->name_declared_this_scope(name)) {
@@ -2159,7 +2158,7 @@ ast_function::hir(exec_list *instructions,
 
       _mesa_glsl_error(& loc, state, "function name `%s' conflicts with "
                       "non-function", name);
-      sig = NULL;
+      return NULL;
    } else {
       f = new(ctx) ir_function(name);
       state->symbols->add_function(f->name, f);
@@ -2207,6 +2206,8 @@ ast_function_definition::hir(exec_list *instructions,
    prototype->hir(instructions, state);
 
    ir_function_signature *signature = prototype->signature;
+   if (signature == NULL)
+      return NULL;
 
    assert(state->current_function == NULL);
    state->current_function = signature;