Fix invalid memory access in debug code
This commit is contained in:
parent
cbce0d6498
commit
4d15d9cc6b
11
ell.c
11
ell.c
|
@ -1116,17 +1116,16 @@ main (int argc, char *argv[]) {
|
||||||
parser_init (&parser, buf.s, buf.len - 1);
|
parser_init (&parser, buf.s, buf.len - 1);
|
||||||
const char *e = NULL;
|
const char *e = NULL;
|
||||||
struct item *program = parser_run (&parser, &e);
|
struct item *program = parser_run (&parser, &e);
|
||||||
free (buf.s);
|
|
||||||
if (e) {
|
|
||||||
printf ("%s: %s\n", "parse error", e);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
printf ("\x1b[1m%s\x1b[0m\n", buf.s);
|
printf ("\x1b[1m%s\x1b[0m\n", buf.s);
|
||||||
print_tree (program, 0);
|
print_tree (program, 0);
|
||||||
printf ("\n\n");
|
printf ("\n\n");
|
||||||
#endif
|
#endif
|
||||||
|
free (buf.s);
|
||||||
|
if (e) {
|
||||||
|
printf ("%s: %s\n", "parse error", e);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
parser_free (&parser);
|
parser_free (&parser);
|
||||||
|
|
||||||
struct context ctx;
|
struct context ctx;
|
||||||
|
|
Loading…
Reference in New Issue