mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Fix ref counting bug
svn path=/trunk/; revision=12749
This commit is contained in:
parent
91fc5d1804
commit
0f86e212b1
1 changed files with 14 additions and 10 deletions
|
@ -343,6 +343,8 @@ IntFindExistingCurIconObject(PWINSTATION_OBJECT WinStaObject, HMODULE hModule,
|
||||||
{
|
{
|
||||||
Object = CONTAINING_RECORD(CurrentEntry, CURICON_OBJECT, ListEntry);
|
Object = CONTAINING_RECORD(CurrentEntry, CURICON_OBJECT, ListEntry);
|
||||||
CurrentEntry = CurrentEntry->Flink;
|
CurrentEntry = CurrentEntry->Flink;
|
||||||
|
if(NT_SUCCESS(ObmReferenceObjectByPointer(Object, otCursorIcon)))
|
||||||
|
{
|
||||||
if((Object->hModule == hModule) && (Object->hRsrc == hRsrc))
|
if((Object->hModule == hModule) && (Object->hRsrc == hRsrc))
|
||||||
{
|
{
|
||||||
if(cx && ((cx != Object->Size.cx) || (cy != Object->Size.cy)))
|
if(cx && ((cx != Object->Size.cx) || (cy != Object->Size.cy)))
|
||||||
|
@ -359,6 +361,8 @@ IntFindExistingCurIconObject(PWINSTATION_OBJECT WinStaObject, HMODULE hModule,
|
||||||
return Object;
|
return Object;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
ObmDereferenceObject(Object);
|
||||||
|
}
|
||||||
|
|
||||||
ExReleaseFastMutex(&CurIconListLock);
|
ExReleaseFastMutex(&CurIconListLock);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue