1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Merge pull request #1001 from ailin-nemui/fix-997

add missing NULL check
This commit is contained in:
ailin-nemui 2019-02-01 14:29:21 +01:00 committed by GitHub
commit 0cdbb2e821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -481,7 +481,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
g_return_val_if_fail(dest != NULL, FALSE);
g_return_val_if_fail(dest->window != NULL, FALSE);
if (dest->target == NULL)
if (dest->target == NULL && dest->window->name != NULL)
return strarray_find(array, dest->window->name) != -1 ? TRUE : FALSE;
item = window_item_find_window(dest->window, dest->server, dest->target);