Use WIN_ReleasePtr not WIN_ReleaseWndPtr with WIN_GetPtr.

This commit is contained in:
Mike McCormack 2001-10-18 21:33:03 +00:00 committed by Alexandre Julliard
parent b165fabd5d
commit cb97a3bf8d
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ static MDICLIENTINFO *get_client_info( HWND client )
}
if (win->cbWndExtra < sizeof(MDICLIENTINFO)) WARN( "%x is not an MDI client\n", client );
else ret = (MDICLIENTINFO *)win->wExtra;
WIN_ReleaseWndPtr( win );
WIN_ReleasePtr( win );
}
return ret;
}