fix window_list_has_next()

This commit is contained in:
Maks Naumov 2014-03-05 14:55:22 +02:00
parent 85853051f0
commit ec7cc1d523

View File

@ -38,7 +38,7 @@ BOOL window_list_has_next(rdpWindowList* list)
{ {
if (list->iterator != NULL) if (list->iterator != NULL)
{ {
if (list->iterator != NULL) if (list->iterator->next != NULL)
return TRUE; return TRUE;
} }