mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Bugfix.
svn path=/trunk/; revision=7132
This commit is contained in:
parent
8bb5ad2bd8
commit
6594b15c96
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: xlate.c,v 1.27 2003/12/20 10:31:32 navaraf Exp $
|
||||
/* $Id: xlate.c,v 1.28 2003/12/20 14:19:47 navaraf Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -214,7 +214,7 @@ VOID FASTCALL EngDeleteXlate(XLATEOBJ *XlateObj)
|
|||
XlateGDI = (XLATEGDI *) AccessInternalObjectFromUserObject(XlateObj);
|
||||
HXlate = (HANDLE) AccessHandleFromUserObject(XlateObj);
|
||||
|
||||
if(NULL != XlateGDI->translationTable)
|
||||
if((XlateObj->flXlate & XO_TABLE) && NULL != XlateGDI->translationTable)
|
||||
{
|
||||
EngFreeMem(XlateGDI->translationTable);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue