Changeset 74748 in vbox for trunk/src/VBox/Runtime/common/ldr/ldrMachO.cpp
- Timestamp:
- Oct 10, 2018 3:28:17 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ldr/ldrMachO.cpp
r74747 r74748 4419 4419 #define SKIP_SPACE_BETWEEN_ELEMENTS_OR_RETURN() \ 4420 4420 do { /* currently only permitting spaces, tabs and newline, following char must be '<'. */ \ 4421 char ch ; \4422 while ((ch = *pszPlist) == ' ' || ch == '\n' || ch== '\t') \4421 char chMacro; \ 4422 while ((chMacro = *pszPlist) == ' ' || chMacro == '\n' || chMacro == '\t') \ 4423 4423 pszPlist++; \ 4424 if (ch == '<') { /* likely */ } \4424 if (chMacro == '<') { /* likely */ } \ 4425 4425 else return RTErrInfoSetF(pErrInfo, VERR_LDRVI_BAD_CERT_FORMAT, \ 4426 4426 "Expected '<' found '%.16s...' at %#zu in plist", pszPlist, pszPlist - pszStart); \ … … 4428 4428 #define SKIP_SPACE_BEFORE_VALUE() \ 4429 4429 do { /* currently only permitting spaces, tabs and newline. */ \ 4430 char ch ; \4431 while ((ch = *pszPlist) == ' ' || ch == '\n' || ch== '\t') \4430 char chMacro; \ 4431 while ((chMacro = *pszPlist) == ' ' || chMacro == '\n' || chMacro == '\t') \ 4432 4432 pszPlist++; \ 4433 4433 } while (0)
Note:
See TracChangeset
for help on using the changeset viewer.