From 1863a9c76d2c1f3a1d5fe901bd638f4b379254da Mon Sep 17 00:00:00 2001 From: Erich Hoover Date: Sun, 31 Jan 2010 21:09:23 -0700 Subject: [PATCH] hhctrl.ocx: Remove a superfluous line that uses an uninitialized variable. --- dlls/hhctrl.ocx/hhctrl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/hhctrl.ocx/hhctrl.c b/dlls/hhctrl.ocx/hhctrl.c index c8ae0a1c87..99f713059e 100644 --- a/dlls/hhctrl.ocx/hhctrl.c +++ b/dlls/hhctrl.ocx/hhctrl.c @@ -297,7 +297,6 @@ int WINAPI doWinMain(HINSTANCE hInstance, LPSTR szCmdLine) space = strchr(ptr, ' '); memcpy(idtxt, ptr, space-ptr); idtxt[space-ptr] = '\0'; - filename += (space-ptr)+1; mapid = atoi(idtxt); szCmdLine = space+1; } -- 2.32.0.93.g670b81a890