Author: gschneider Date: Sun Aug 9 14:07:21 2009 New Revision: 42557
URL: http://svn.reactos.org/svn/reactos?rev=42557&view=rev Log: Even without a CMINVOKECOMMANDINFOEX structure a link should be executed with the supplied parameters See issue #4323 for more details.
Modified: trunk/reactos/dll/win32/shell32/shelllink.c
Modified: trunk/reactos/dll/win32/shell32/shelllink.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shelllink... ============================================================================== --- trunk/reactos/dll/win32/shell32/shelllink.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/shelllink.c [iso-8859-1] Sun Aug 9 14:07:21 2009 @@ -2816,6 +2816,10 @@ wcscat( args, iciex->lpParametersW ); } } + else if (This->sArgs != NULL) + { + args = This->sArgs; + }
memset( &sei, 0, sizeof sei ); sei.cbSize = sizeof sei;