small bugfix

svn path=/trunk/; revision=6714
This commit is contained in:
Thomas Bluemel 2003-11-19 20:12:34 +00:00
parent 7c0860d405
commit 1c86d55f2c

View file

@ -57,12 +57,15 @@ DlgMainProc(
{
GetCurrentDirectory(MAX_PATH, selected);
len = strlen(selected);
if(selected[len - 1] != '\\')
if(strlen(file))
{
lstrcat(selected, "\\");
if(selected[len - 1] != '\\')
{
lstrcat(selected, "\\");
}
lstrcat(selected, file);
EndDialog(hwndDlg, IDC_OK);
}
lstrcat(selected, file);
EndDialog(hwndDlg, IDC_OK);
}
break;
}