do not assert if DPRINT1("Object->cExclusiveLock = %d\n", Object->cExclusiveLock);

this can happen in ms dxg.sys for it can lock same dc twice or more. 
then call to unlock it equal many times. 

svn path=/trunk/; revision=33039
This commit is contained in:
Magnus Olsen
2008-04-19 22:11:39 +00:00
parent 261dadceff
commit eee02ef819
@@ -692,7 +692,8 @@ LockHandle:
DPRINT1("Object->cExclusiveLock = %d\n", Object->cExclusiveLock);
GDIDBG_TRACECALLER();
GDIDBG_TRACELOCKER(GDI_HANDLE_GET_INDEX(hObj));
ASSERT(FALSE);
/* do not assert here for it will call again from dxg.sys it being call twice */
//ASSERT(FALSE);
}
}
else