Changeset 104549 in vbox for trunk/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp
- Timestamp:
- May 8, 2024 12:27:24 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp
r99739 r104549 474 474 RTJsonValueRelease(hVal); 475 475 } 476 if (RT_FAILURE(rc)) 477 break; 476 478 rc = RTJsonIteratorNext(hEnvIt); 477 479 } while (RT_SUCCESS(rc)); … … 549 551 RTJsonValueRelease(hVal); 550 552 } 553 if (RT_FAILURE(rc)) 554 break; 555 551 556 rc = RTJsonIteratorNext(hSanIt); 552 557 } while (RT_SUCCESS(rc)); … … 984 989 RTJsonValueRelease(hVal); 985 990 } 991 if (RT_FAILURE(rc)) 992 break; 993 986 994 rc = RTJsonIteratorNext(hTgtIt); 987 995 } while (RT_SUCCESS(rc)); … … 1788 1796 /* Option variables: */ 1789 1797 bool fDaemonize = false; 1790 bool fDaemonized = false;1791 1798 const char *pszLoadCfg = NULL; 1792 1799 RTFUZZCMDMASTER This; … … 1833 1840 1834 1841 case 'Z': 1835 fDaemonized = true;1836 1842 fDaemonize = false; 1837 1843 break;
Note:
See TracChangeset
for help on using the changeset viewer.