From 98ead50b4eea7cda4b357f1c4b19a741205c6fa4 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Tue, 14 Feb 2017 13:38:59 +0100 Subject: Prevent some potential null-pointer deferences. Spotted by our friend scan-build. --- src/fe-text/mainwindows-layout.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/fe-text') diff --git a/src/fe-text/mainwindows-layout.c b/src/fe-text/mainwindows-layout.c index 020969e6..fae02539 100644 --- a/src/fe-text/mainwindows-layout.c +++ b/src/fe-text/mainwindows-layout.c @@ -121,6 +121,8 @@ static void sig_layout_restore(void) if (node == NULL) return; sorted_config = get_sorted_windows_config(node); + if (sorted_config == NULL) return; + windows_count = g_slist_length(sorted_config); /* calculate the saved terminal height */ -- cgit v1.2.3