From d15e9684e8d30e8982055000e0593ed22acba766 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Tue, 20 Dec 2011 21:00:19 +0000 Subject: [PATCH] [WIN32K] Colon end SEH lines to allow proper static analysis svn path=/trunk/; revision=54717 --- reactos/subsystems/win32/win32k/ntuser/clipboard.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/clipboard.c b/reactos/subsystems/win32/win32k/ntuser/clipboard.c index 8a65c99aa9a..4bbbb740c9c 100644 --- a/reactos/subsystems/win32/win32k/ntuser/clipboard.c +++ b/reactos/subsystems/win32/win32k/ntuser/clipboard.c @@ -847,7 +847,7 @@ NtUserGetClipboardData(UINT fmt, PGETCLIPBDATA pgcd) if (fmt == CF_TEXT) { PCLIP pLocaleEl; - + pLocaleEl = IntIsFormatAvailable(pWinStaObj, CF_LOCALE); if (pLocaleEl && !IS_DATA_DELAYED(pLocaleEl)) pgcd->hLocale = pLocaleEl->hData; @@ -855,7 +855,7 @@ NtUserGetClipboardData(UINT fmt, PGETCLIPBDATA pgcd) else if (fmt == CF_BITMAP) { PCLIP pPaletteEl; - + pPaletteEl = IntIsFormatAvailable(pWinStaObj, CF_PALETTE); if (pPaletteEl && !IS_DATA_DELAYED(pPaletteEl)) pgcd->hPalette = pPaletteEl->hData; @@ -867,7 +867,7 @@ NtUserGetClipboardData(UINT fmt, PGETCLIPBDATA pgcd) { SetLastNtError(_SEH2_GetExceptionCode()); } - _SEH2_END + _SEH2_END; cleanup: if(pWinStaObj)