projects
/
xonotic
/
gmqcc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9eefe90
)
fixing a crash caused by the correction: setting correct=NULL after freeing so the...
author
Wolfgang Bumiller <blub@speed.at>
Wed, 9 Jan 2013 18:12:27 +0000
(19:12 +0100)
committer
Wolfgang Bumiller <blub@speed.at>
Wed, 9 Jan 2013 18:12:27 +0000
(19:12 +0100)
parser.c
patch
|
blob
|
history
diff --git
a/parser.c
b/parser.c
index
4432ed4
..
6c59d3c
100644
(file)
--- a/
parser.c
+++ b/
parser.c
@@
-1649,6
+1649,7
@@
static ast_expression* parse_expression_leave(parser_t *parser, bool stopatcomma
break;
} else if (correct) {
mem_d(correct);
+ correct = NULL;
}
}