Commit 1863a9c7 authored by Erich Hoover's avatar Erich Hoover Committed by Alexandre Julliard

hhctrl.ocx: Remove a superfluous line that uses an uninitialized variable.

parent 69818163
...@@ -297,7 +297,6 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine) ...@@ -297,7 +297,6 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine)
space = strchr(ptr, ' '); space = strchr(ptr, ' ');
memcpy(idtxt, ptr, space-ptr); memcpy(idtxt, ptr, space-ptr);
idtxt[space-ptr] = '\0'; idtxt[space-ptr] = '\0';
filename += (space-ptr)+1;
mapid = atoi(idtxt); mapid = atoi(idtxt);
szCmdLine = space+1; szCmdLine = space+1;
} }
......
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