Do not create crash/bsod log when u logoff or shutdown of ReactOS.

svn path=/trunk/; revision=22014
This commit is contained in:
Magnus Olsen 2006-05-24 19:34:53 +00:00
parent fc40c38034
commit 238be0b59c

View file

@ -275,10 +275,15 @@ IntEngCreateXlate(USHORT DestPalType, USHORT SourcePalType,
*/
end:
if (PaletteDest != NULL)
if (PaletteDest != PaletteSource)
if (DestPalGDI != NULL)
PALETTE_UnlockPalette(DestPalGDI);
if (PaletteSource != NULL)
PALETTE_UnlockPalette(SourcePalGDI);
if (PaletteDest != NULL && PaletteDest != PaletteSource)
PALETTE_UnlockPalette(DestPalGDI);
return XlateObj;
}