From 6b7f32f4136468a9ee6929cead1f6dd9ec5edaca Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 4 Aug 2002 21:22:30 +0000 Subject: [PATCH] damn p... git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@642 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/util.c b/Source/exehead/util.c index 1ee5ff44..8947102e 100644 --- a/Source/exehead/util.c +++ b/Source/exehead/util.c @@ -254,7 +254,7 @@ void recursive_create_directory(char *directory) else return; while (*p) { - while (*p != '\\' && *p) CharNext(p); + while (*p != '\\' && *p) p=CharNext(p); if (!*p) CreateDirectory(directory,NULL); else {