winpr: fix error path in winpr_event_init (#6974)

(cherry picked from commit db02de2d8b)
This commit is contained in:
David Fort 2021-04-22 11:57:44 +02:00 коммит произвёл akallabeth
Родитель fade0b3573
Коммит b5ab8484d3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -88,7 +88,7 @@ BOOL winpr_event_init(WINPR_EVENT_IMPL* event)
return TRUE;
out_error:
winpr_event_uninit(&event);
winpr_event_uninit(event);
return FALSE;
#endif
}