use a different temporary variable now that state_command_line is already in use

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4905 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-01-25 22:37:46 +00:00
parent 0243b40a1d
commit 8b278be803

View file

@ -48,8 +48,8 @@ char *ValidateTempDir()
return NULL; return NULL;
addtrailingslash(state_temp_dir); addtrailingslash(state_temp_dir);
CreateDirectory(state_temp_dir, NULL); CreateDirectory(state_temp_dir, NULL);
// state_command_line is used as a temp var here // state_language is used as a temp var here
return my_GetTempFileName(state_command_line, state_temp_dir); return my_GetTempFileName(state_language, state_temp_dir);
} }
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInst,LPSTR lpszCmdParam, int nCmdShow) int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInst,LPSTR lpszCmdParam, int nCmdShow)
@ -163,7 +163,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInst,LPSTR lpszCmdParam,
goto end; goto end;
} }
} }
DeleteFile(state_command_line); DeleteFile(state_language);
m_Err = loadHeaders(cl_flags); m_Err = loadHeaders(cl_flags);
if (m_Err) goto end; if (m_Err) goto end;