diff options
author | Ailin Nemui <ailin@esf51.localdomain> | 2015-01-07 04:12:55 +0100 |
---|---|---|
committer | Ailin Nemui <ailin@linux.site> | 2015-02-17 09:50:55 +0100 |
commit | ee3eaa5428c7a574ad3d34602230f3168f204414 (patch) | |
tree | 11f4ab716f1b886b1e47389eb36c73025b9c2cba /src/fe-text | |
parent | fef25d6a35d23f885937b087ed7642b327279df5 (diff) | |
download | irssi-ee3eaa5428c7a574ad3d34602230f3168f204414.zip |
fix crash in layout code when encountering wrong config
Diffstat (limited to 'src/fe-text')
-rw-r--r-- | src/fe-text/mainwindows-layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fe-text/mainwindows-layout.c b/src/fe-text/mainwindows-layout.c index c53f8f72..020969e6 100644 --- a/src/fe-text/mainwindows-layout.c +++ b/src/fe-text/mainwindows-layout.c @@ -179,6 +179,7 @@ static void sig_layout_restore(void) lower_window = NULL; lower_size = 0; for (i = 0, tmp = sorted_config; i < windows_count; tmp = tmp->next, i++) { CONFIG_NODE *node = tmp->data; + if (node->key == NULL) continue; /* create a new window + mainwindow */ signal_emit("gui window create override", 1, |