--- install.c.orig 2015-05-20 14:11:27.723397005 -0700 +++ install.c 2015-05-20 14:14:00.862860244 -0700 @@ -1640,8 +1640,8 @@ PSWIZB_BACK); SetDlgItemText(hwnd, IDC_PATH, ""); SetDlgItemText(hwnd, IDC_INSTALL_PATH, ""); - strcpy(python_dir, ""); - strcpy(pythondll, ""); + *python_dir = '\0'; /* replaces strcpy(python_dir, "") */ + *pythondll = '\0'; /* replaces strcpy(pythondll, "") */ } else { char *pbuf; int result; @@ -1680,7 +1680,7 @@ } free(pbuf); } else - strcpy(pythondll, ""); + *pythondll = '\0'; /* replaces strcpy(pythondll, "") */ /* retrieve the scheme for this version */ { char install_path[_MAX_PATH];