From 3a922d8d38bce7e975185fac24dbf0d043c97c34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 28 Aug 2003 13:50:49 +0000 Subject: [PATCH] Fix double locking of DC svn path=/trunk/; revision=5894 --- reactos/subsys/win32k/objects/text.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/reactos/subsys/win32k/objects/text.c b/reactos/subsys/win32k/objects/text.c index 79f748826a7..e43f1797624 100644 --- a/reactos/subsys/win32k/objects/text.c +++ b/reactos/subsys/win32k/objects/text.c @@ -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: text.c,v 1.45 2003/08/28 12:35:59 gvg Exp $ */ +/* $Id: text.c,v 1.46 2003/08/28 13:50:49 gvg Exp $ */ #undef WIN32_LEAN_AND_MEAN @@ -813,13 +813,6 @@ NtGdiGetTextExtentPoint32(HDC hDC, BOOLEAN Result; PTEXTOBJ TextObj; - dc = DC_LockDc(hDC); - - if (NULL == dc) - { - SetLastWin32Error(ERROR_INVALID_HANDLE); - return FALSE; - } if (Count < 0) { SetLastWin32Error(ERROR_INVALID_PARAMETER);