- Fixed ComponentText without InstTypes

- Made it impossible to install to non-existing drives/removable drives with no media
- Fixed a crash caused by using a LangString in InstallDir
- No more Windows error message when a registered DLL dependency can't be found


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2957 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-09-23 19:01:19 +00:00
parent 3988e924f7
commit 6d63dd3a58
6 changed files with 68 additions and 70 deletions

View file

@ -171,6 +171,8 @@ int NSISCALL ui_doinstall(void)
static WNDCLASS wc; // richedit subclassing and bgbg creation
g_exec_flags.autoclose=g_flags&CH_FLAGS_AUTO_CLOSE;
set_language();
if (!is_valid_instpath(state_install_directory))
{
if (header->install_reg_key_ptr)
@ -201,8 +203,9 @@ int NSISCALL ui_doinstall(void)
d=GetFileAttributes(p);
if (d == (DWORD)-1 || !(d&FILE_ATTRIBUTE_DIRECTORY))
{
e=scanendslash(p);
if (e>=p) *e=0;
// if there is no back-slash, the string will become empty, but that's ok because
// it would make an invalid instdir anyway
trimslashtoend(p);
}
}
}
@ -224,8 +227,6 @@ int NSISCALL ui_doinstall(void)
}
#endif
set_language();
#ifdef NSIS_CONFIG_VISIBLE_SUPPORT
g_hIcon=LoadImage(g_hInstance,MAKEINTRESOURCE(IDI_ICON2),IMAGE_ICON,0,0,LR_DEFAULTSIZE|LR_SHARED);
#ifdef NSIS_SUPPORT_BGBG
@ -790,6 +791,7 @@ static BOOL CALLBACK DirProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
if (uMsg == WM_IN_UPDATEMSG || uMsg == WM_NOTIFY_START)
{
static char s[NSIS_MAX_STRLEN];
char *p;
int is_valid_path;
int x;
int total=0, available=-1;
@ -799,16 +801,9 @@ static BOOL CALLBACK DirProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPar
is_valid_path=is_valid_instpath(dir);
mystrcpy(s,dir);
if (s[1] == ':') s[3]=0;
else if (*(WORD*)s == CHAR2_TO_WORD('\\','\\')) // \\ path
{
char *p = mystrstr(s+2,"\\");
if (p) {
p = mystrstr(p+1,"\\");
if (p) *p = 0;
}
addtrailingslash(s);
}
p=skip_root(s);
if (p)
*p=0;
if (GetDiskFreeSpace(s,&spc,&bps,&fc,&tc))
{