Fix double free in criteria

This commit is contained in:
Ryan Dwyer 2018-05-13 08:47:22 +10:00
parent bffcb496cc
commit 39007fc30f
1 changed files with 1 additions and 2 deletions

View File

@ -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;