From: Ian Romanick Date: Mon, 27 Jul 2009 19:38:52 +0000 (-0700) Subject: ARB prog: Delete comment about possibly needing to free a buffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6d3ccaf3665ce4c137cdeb614a518e58d4cd8aef;p=mesa.git ARB prog: Delete comment about possibly needing to free a buffer Valgrind doesn't complain about a leak here, so delete the comment about possibly needing to free the state returned by yy_scan_bytes. --- diff --git a/src/mesa/shader/program_lexer.l b/src/mesa/shader/program_lexer.l index 2d207726315..c952f090401 100644 --- a/src/mesa/shader/program_lexer.l +++ b/src/mesa/shader/program_lexer.l @@ -474,9 +474,5 @@ _mesa_program_lexer_ctor(void **scanner, struct asm_parser_state *state, void _mesa_program_lexer_dtor(void *scanner) { - /* FINISHME: It's not clear to me whether or not the buffer state returned - * FINISHME: by yy_scan_bytes in _mesa_program_lexer_ctor needs to be - * FINISHME: explicitly destroyed here or not. - */ yylex_destroy(scanner); }