Skip to content
Snippets Groups Projects
Commit d3d6c4ed authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard
Browse files

Fixed memory overwrite bug.

parent 82d1a8fb
No related branches found
No related tags found
No related merge requests found
......@@ -148,8 +148,8 @@ int PASCAL WinMain (HANDLE hInstance, HANDLE prev, LPSTR cmdline, int show)
/* Setup Globals */
lstrcpy(Globals.lpszIniFile, "notepad.ini");
lstrcpy(Globals.lpszIcoFile, "notepad.ico");
Globals.lpszIniFile = "notepad.ini";
Globals.lpszIcoFile = "notepad.ico";
Globals.hInstance = hInstance;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment