mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
urlmon: Separate NULL ptr check (Coverity 924).
This commit is contained in:
parent
f95324c69e
commit
bbac7d9fb4
@ -171,7 +171,10 @@ void release_notif_hwnd(HWND hwnd)
|
||||
{
|
||||
tls_data_t *data = get_tls_data();
|
||||
|
||||
if(!data || data->notif_hwnd != hwnd) {
|
||||
if(!data)
|
||||
return;
|
||||
|
||||
if(data->notif_hwnd != hwnd) {
|
||||
PostMessageW(data->notif_hwnd, WM_MK_RELEASE, 0, 0);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user