diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-10-09 13:37:20 +0200 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-10-09 13:37:20 +0200 |
| commit | 7652ddd2b34f583a7708005b220a170b383ea509 (patch) | |
| tree | 9837135ed3c4d816790f251d15acb792658eabe0 | |
| parent | 74592539cd69a234a35bab1389be98f55753ee73 (diff) | |
| parent | eac5cbc8fa17648963a8cc4ef37f7052a2d6629f (diff) | |
Merge pull request #2804 from Emantor/swaynag-double-free
config: remove double free of config->swaynag_command
| -rw-r--r-- | sway/config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index a50e9144..1926bc08 100644 --- a/sway/config.c +++ b/sway/config.c @@ -73,8 +73,6 @@ void free_config(struct sway_config *config) { memset(&config->handler_context, 0, sizeof(config->handler_context)); - free(config->swaynag_command); - // TODO: handle all currently unhandled lists as we add implementations if (config->symbols) { for (int i = 0; i < config->symbols->length; ++i) { |
