Commit edc06133 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

Space is valid between module name and entry point.

parent 3be8cb8b
......@@ -244,8 +244,10 @@ int main(int argc, char* argv[])
if (!szDllName || *szDllName==0)
goto CLEANUP;
WINE_TRACE("DllName=%s\n",wine_dbgstr_w(szDllName));
if (!(szEntryPoint = strchrW( szDllName, ',' ))) goto CLEANUP;
*szEntryPoint++=0;
if ((szEntryPoint = strchrW(szDllName, ',' )))
*szEntryPoint++=0;
else
szEntryPoint = GetNextArg(&szCmdLine);
WINE_TRACE("EntryPoint=%s\n",wine_dbgstr_w(szEntryPoint));
/* Load the library */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment