Bugfix: don’t free the old json_output, the caller does that

This commit is contained in:
Michael Stapelberg 2011-08-09 08:41:42 +02:00
parent 95416175cd
commit cd1add1f3c
1 changed files with 1 additions and 1 deletions

View File

@ -81,13 +81,13 @@ int cmdyywrap() {
}
char *parse_cmd(const char *new) {
json_output = NULL;
LOG("COMMAND: *%s*\n", new);
cmdyy_scan_string(new);
match_init(&current_match);
context = scalloc(sizeof(struct context));
context->filename = "cmd";
FREE(json_output);
if (cmdyyparse() != 0) {
fprintf(stderr, "Could not parse command\n");
asprintf(&json_output, "{\"success\":false, \"error\":\"%s at position %d\"}",