glcpp: fix abuse of yylex
authorDave Airlie <airlied@gmail.com>
Fri, 14 Sep 2012 09:59:54 +0000 (19:59 +1000)
committerDave Airlie <airlied@gmail.com>
Fri, 14 Sep 2012 22:20:56 +0000 (08:20 +1000)
So glcpp tried to workaround yylex its own way, but failed,
do it properly.

This fixes another crash found after fixing the first crash.

this is a candidate for 9.0 and stable branches

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/glsl/glcpp/Makefile.am
src/glsl/glcpp/glcpp-parse.y

index 7a95b6848b9d0ece1af3fcaa81516fb955350dc8..87affce1c18639b7794acc56c09a9a0c815aaa82 100644 (file)
@@ -31,7 +31,7 @@ AM_CFLAGS = \
        $(LIBRARY_DEFINES) \
        $(API_DEFINES)
 
-AM_YFLAGS = -v -d
+AM_YFLAGS = -v -d -p "glcpp_parser_"
 AM_LFLAGS = --nounistd -o$(LEX_OUTPUT_ROOT).c
 
 noinst_LTLIBRARIES = libglcpp.la
index bf6f3ad019b537cf4dd27be07beb1f8e794430ac..fb9bc588ef80f4beae5b83f084e1af957290a48e 100644 (file)
@@ -133,8 +133,6 @@ _glcpp_parser_skip_stack_change_if (glcpp_parser_t *parser, YYLTYPE *loc,
 static void
 _glcpp_parser_skip_stack_pop (glcpp_parser_t *parser, YYLTYPE *loc);
 
-#define yylex glcpp_parser_lex
-
 static int
 glcpp_parser_lex (YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser);
 
@@ -1197,12 +1195,6 @@ glcpp_parser_create (const struct gl_extensions *extensions, int api)
        return parser;
 }
 
-int
-glcpp_parser_parse (glcpp_parser_t *parser)
-{
-       return yyparse (parser);
-}
-
 void
 glcpp_parser_destroy (glcpp_parser_t *parser)
 {