Fixed bug #846723 - SetOutPath doesn't work with root directories

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3193 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-11-24 13:29:40 +00:00
parent 0ef7fcd98b
commit c49208b861

View file

@ -229,12 +229,10 @@ static int NSISCALL ExecuteEntry(entry *entry_)
char *buf1=GetStringFromParm(-0x10);
log_printf3("CreateDirectory: \"%s\" (%d)",buf1,parm1);
{
char *p=buf1;
char c='c';
if (*p) {
p = skip_root(buf1);
if (!p)
break;
char *p = skip_root(buf1);
char c = 'c';
if (*buf1 && p)
{
while (c)
{
WIN32_FIND_DATA *fd;