damn p...

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@642 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-04 21:22:30 +00:00
parent bc920f3691
commit 6b7f32f413

View file

@ -254,7 +254,7 @@ void recursive_create_directory(char *directory)
else return; else return;
while (*p) while (*p)
{ {
while (*p != '\\' && *p) CharNext(p); while (*p != '\\' && *p) p=CharNext(p);
if (!*p) CreateDirectory(directory,NULL); if (!*p) CreateDirectory(directory,NULL);
else else
{ {