]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - parser.cpp
two small memory leak fixes on failure paths
[xonotic/gmqcc.git] / parser.cpp
index 51f7e1ea6c571d20b158953b803b306f52f1c35d..7bb2a10f8f2401f783feebed27da3fb12fac980f 100644 (file)
@@ -3127,6 +3127,7 @@ static bool parse_switch_go(parser_t *parser, ast_block *block, ast_expression *
             }
             if (!OPTS_FLAG(RELAXED_SWITCH)) {
                 if (!ast_istype(swcase.m_value, ast_value)) { /* || ((ast_value*)swcase.m_value)->m_cvq != CV_CONST) { */
+                    delete switchnode;
                     parseerror(parser, "case on non-constant values need to be explicitly enabled via -frelaxed-switch");
                     ast_unref(operand);
                     return false;