Skip to content
Snippets Groups Projects
Commit 624ed5d5 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

mp_lexer_free(): Free lex->indent_level array.

parent b080c794
Branches
No related tags found
No related merge requests found
...@@ -691,6 +691,7 @@ void mp_lexer_free(mp_lexer_t *lex) { ...@@ -691,6 +691,7 @@ void mp_lexer_free(mp_lexer_t *lex) {
lex->stream_close(lex->stream_data); lex->stream_close(lex->stream_data);
} }
vstr_clear(&lex->vstr); vstr_clear(&lex->vstr);
m_del(uint16_t, lex->indent_level, lex->alloc_indent_level);
m_del_obj(mp_lexer_t, lex); m_del_obj(mp_lexer_t, lex);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment