mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 18:01:29 +00:00
Fix double free in criteria
This commit is contained in:
parent
bffcb496cc
commit
39007fc30f
|
@ -417,10 +417,9 @@ static void unescape(char *value) {
|
||||||
* criteria struct.
|
* criteria struct.
|
||||||
*
|
*
|
||||||
* If errors are found, NULL will be returned and the error argument will be
|
* 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) {
|
struct criteria *criteria_parse(char *raw, char **error_arg) {
|
||||||
free(error);
|
|
||||||
error = NULL;
|
error = NULL;
|
||||||
|
|
||||||
char *head = raw;
|
char *head = raw;
|
||||||
|
|
Loading…
Reference in a new issue