configuration.c - prevent dereference after null warning from Coverity

This commit is contained in:
twinaphex 2016-09-24 17:00:41 +02:00
parent 09cc6c41b9
commit 4cf9b3b6be

View File

@ -3190,7 +3190,6 @@ bool config_save_overrides(int override_type)
path_overrides[i].ptr);
}
}
}
ret = false;
@ -3211,6 +3210,7 @@ bool config_save_overrides(int override_type)
}
config_file_free(conf);
}
if (bool_settings)
free(bool_settings);