- Timestamp:
- Jul 14, 2001, 9:44:40 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/peldr/pe.cpp
r6248 r6325 1 /* $Id: pe.cpp,v 1.3 0 2001-07-08 11:00:48sandervl Exp $ */1 /* $Id: pe.cpp,v 1.31 2001-07-14 07:44:40 sandervl Exp $ */ 2 2 3 3 /* … … 93 93 PPIB ppib; 94 94 char *cmdline, *win32cmdline, *peoptions, *newcmdline; 95 BOOL fQuote = FALSE, fVioConsole, fIsNEExe ;95 BOOL fQuote = FALSE, fVioConsole, fIsNEExe, fEndOfCmdLine = FALSE; 96 96 int nrTries = 1; 97 97 … … 133 133 } 134 134 if(nrTries > 1 && *p == 0) { 135 pszErrorMsg = szFileNotFound; 136 goto failerror; 135 fEndOfCmdLine = TRUE; 137 136 } 138 137 } … … 163 162 { 164 163 nrTries++; 164 if(fEndOfCmdLine) { 165 pszErrorMsg = szFileNotFound; 166 goto failerror; 167 } 168 165 169 if(*win32cmdline != NULL && !fQuote) { 166 170 goto tryagain;
Note:
See TracChangeset
for help on using the changeset viewer.