mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
add missing NULL check
This commit is contained in:
parent
aa80f1de61
commit
b1d6cb7f26
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user