Module: Mesa Branch: asm-shader-rework-1 Commit: 6d3ccaf3665ce4c137cdeb614a518e58d4cd8aef URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6d3ccaf3665ce4c137cdeb614a518e58d4cd8aef
Author: Ian Romanick <[email protected]> Date: Mon Jul 27 12:38:52 2009 -0700 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. --- src/mesa/shader/program_lexer.l | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/src/mesa/shader/program_lexer.l b/src/mesa/shader/program_lexer.l index 2d20772..c952f09 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); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
