mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
kernel32: Make GMEM_DDESHARE blocks owned by the calling module.
This commit is contained in:
parent
1346740a57
commit
eb4477120a
@ -283,7 +283,11 @@ HGLOBAL16 WINAPI GlobalAlloc16(
|
||||
HANDLE16 owner = GetCurrentPDB16();
|
||||
|
||||
if (flags & GMEM_DDESHARE)
|
||||
owner = GetExePtr(owner); /* Make it a module handle */
|
||||
{
|
||||
/* make it owned by the calling module */
|
||||
STACK16FRAME *frame = CURRENT_STACK16;
|
||||
owner = GetExePtr( frame->cs );
|
||||
}
|
||||
return GLOBAL_Alloc( flags, size, owner, WINE_LDT_FLAGS_DATA );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user