mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
kernel32: Use the correct pointer size in atl thunk (Coverity).
This commit is contained in:
parent
c41f6add05
commit
fc179497bd
1 changed files with 1 additions and 1 deletions
|
@ -1569,7 +1569,7 @@ static BOOL check_atl_thunk( EXCEPTION_RECORD *rec, CONTEXT *context )
|
|||
const struct atl_thunk *thunk = (const struct atl_thunk *)rec->ExceptionInformation[1];
|
||||
BOOL ret = FALSE;
|
||||
|
||||
if (!virtual_is_valid_code_address( thunk, sizeof(thunk) )) return FALSE;
|
||||
if (!virtual_is_valid_code_address( thunk, sizeof(*thunk) )) return FALSE;
|
||||
|
||||
__TRY
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue