1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Merge pull request #837 from ailin-nemui/no-show

check the error condition of mainwindow_create
This commit is contained in:
ailin-nemui 2018-02-05 22:24:17 +01:00 committed by GitHub
commit 442f6f08b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1393,6 +1393,11 @@ static void _cmd_window_show_opt(const char *data, int right)
}
parent = mainwindow_create(right);
if (parent == NULL) {
printformat_window(active_win, MSGLEVEL_CLIENTERROR, TXT_WINDOW_TOO_SMALL);
return;
}
parent->active = window;
gui_window_reparent(window, parent);