From 361d78ab88958554137686af2f2b3b90d7eb0b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Fri, 24 Sep 2004 12:13:54 +0000 Subject: [PATCH] Merge back commit from winehq svn path=/trunk/; revision=11026 --- reactos/lib/shell32/shelllink.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/reactos/lib/shell32/shelllink.c b/reactos/lib/shell32/shelllink.c index 6be10744f99..163a3cfdc9a 100644 --- a/reactos/lib/shell32/shelllink.c +++ b/reactos/lib/shell32/shelllink.c @@ -1027,11 +1027,7 @@ static HRESULT WINAPI IShellLinkA_fnGetPath(IShellLinkA * iface, LPSTR pszFile, WideCharToMultiByte( CP_ACP, 0, This->sPath, -1, pszFile, cchMaxPath, NULL, NULL); - if (pfd) { - - FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This); - - } + if (pfd) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This); return NOERROR; } @@ -1444,11 +1440,7 @@ static HRESULT WINAPI IShellLinkW_fnGetPath(IShellLinkW * iface, LPWSTR pszFile, if( This->sPath ) lstrcpynW( pszFile, This->sPath, cchMaxPath ); - if (pfd) { - - FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This); - - } + if (pfd) FIXME("(%p): WIN32_FIND_DATA is not yet filled.\n", This); return NOERROR; }