From 2fa1533cf491cb0bc2243fee29f5c7bf55646ed0 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Fri, 9 Sep 2016 15:12:04 +0000 Subject: [PATCH] [NtGDI] - Remove unneeded return sets. svn path=/trunk/; revision=72630 --- reactos/win32ss/gdi/ntgdi/path.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/reactos/win32ss/gdi/ntgdi/path.c b/reactos/win32ss/gdi/ntgdi/path.c index a127a694d43..bd0f9c80fa6 100644 --- a/reactos/win32ss/gdi/ntgdi/path.c +++ b/reactos/win32ss/gdi/ntgdi/path.c @@ -2559,7 +2559,6 @@ NtGdiFillPath(HDC hDC) if (pNewPath->state != PATH_Closed) { EngSetLastError(ERROR_CAN_NOT_COMPLETE); - ret = FALSE; } else if (pNewPath->numEntriesUsed) { @@ -2883,7 +2882,6 @@ NtGdiStrokeAndFillPath(HDC hDC) if (pNewPath->state != PATH_Closed) { EngSetLastError(ERROR_CAN_NOT_COMPLETE); - bRet = FALSE; } else if (pNewPath->numEntriesUsed) { @@ -2941,7 +2939,6 @@ NtGdiStrokePath(HDC hDC) if (pNewPath->state != PATH_Closed) { EngSetLastError(ERROR_CAN_NOT_COMPLETE); - bRet = FALSE; } else bRet = PATH_StrokePath(pDc, pNewPath);