diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-13 08:47:22 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-14 11:38:09 +1000 |
commit | 39007fc30fa3619f14087d138acb8a49114631c3 (patch) | |
tree | f992e5ac8576c5df686aabb414406aa5c90f8319 /sway | |
parent | bffcb496cc002d9c8a41285eaabd908b322a9c99 (diff) | |
download | sway-39007fc30fa3619f14087d138acb8a49114631c3.tar.xz |
Fix double free in criteria
Diffstat (limited to 'sway')
-rw-r--r-- | sway/criteria.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/criteria.c b/sway/criteria.c index 294b2922..286ccc3b 100644 --- a/sway/criteria.c +++ b/sway/criteria.c @@ -417,10 +417,9 @@ static void unescape(char *value) { * criteria struct. * * If errors are found, NULL will be returned and the error argument will be - * populated with an error string. + * populated with an error string. It is up to the caller to free the error. */ struct criteria *criteria_parse(char *raw, char **error_arg) { - free(error); error = NULL; char *head = raw; |