From ebd54dc8c9baaa9101915a4c1ab4f67662693360 Mon Sep 17 00:00:00 2001 From: eccles Date: Sun, 22 Sep 2002 14:22:35 +0000 Subject: [PATCH] 4 byte saving. woooo. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1150 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/exec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/exehead/exec.c b/Source/exehead/exec.c index 5584cf9d..9985da9c 100644 --- a/Source/exehead/exec.c +++ b/Source/exehead/exec.c @@ -329,8 +329,8 @@ static int NSISCALL ExecuteEntry(entry *entry_) process_string_fromparm_tobuf(0x01); if (!SearchPath(NULL,buf0,NULL,NSIS_MAX_STRLEN,p,&fp)) { - p[0]=0; exec_errorflag++; + p[0]=0; } } return 0; @@ -339,8 +339,8 @@ static int NSISCALL ExecuteEntry(entry *entry_) char *textout=var0; if (!GetTempPath(NSIS_MAX_STRLEN,buf0) || !GetTempFileName(buf0,"nst",0,textout)) { - *textout=0; exec_errorflag++; + *textout=0; } } return 0; @@ -567,8 +567,8 @@ static int NSISCALL ExecuteEntry(entry *entry_) { if (!GetEnvironmentVariable(buf0,p,NSIS_MAX_STRLEN)) { - *p=0; exec_errorflag++; + *p=0; } } else