Commit 624ed5d5 authored by Paul Sokolovsky's avatar Paul Sokolovsky

mp_lexer_free(): Free lex->indent_level array.

parent b080c794
......@@ -691,6 +691,7 @@ void mp_lexer_free(mp_lexer_t *lex) {
lex->stream_close(lex->stream_data);
}
vstr_clear(&lex->vstr);
m_del(uint16_t, lex->indent_level, lex->alloc_indent_level);
m_del_obj(mp_lexer_t, lex);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment