Merge pull request #639 from neosilky/freefix

sway/config.c: fix double free issue as we need to store path in list
This commit is contained in:
Drew DeVault 2016-05-05 18:01:19 -07:00
commit db651a41f3

View file

@ -357,8 +357,6 @@ bool load_main_config(const char *file, bool is_active) {
update_active_bar_modifiers(); update_active_bar_modifiers();
} }
free(path);
return success; return success;
} }