First tex_parser() successful pass

This commit is contained in:
Kolan Sh 2011-06-20 17:25:44 +04:00
parent 41185418ed
commit a0e8963fb2
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ int parse_table(const char *table_source, size_t len, struct table_s *table, str
switch (where_stack[tex_level]) {
case IN_UNDEF:
if (c == '\\') {
zfree(tag); tag = NULL;
tag = zfree_null(tag);
where_stack[tex_level] = IN_TAG;
} else if (c == '%') {
where_stack[++tex_level] = IN_COMMENT;