Changeset 98288 in vbox for trunk/src/VBox/Main/src-server/darwin/HostDnsServiceDarwin.cpp
- Timestamp:
- Jan 24, 2023 3:32:43 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155493
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/darwin/HostDnsServiceDarwin.cpp
r98103 r98288 90 90 return E_OUTOFMEMORY; 91 91 92 int rc = RTSemEventCreate(&m->m_evtStop);93 AssertRCReturn( rc, E_FAIL);92 int vrc = RTSemEventCreate(&m->m_evtStop); 93 AssertRCReturn(vrc, E_FAIL); 94 94 95 95 CFRunLoopSourceContext sctx; … … 158 158 159 159 /* Trigger initial update. */ 160 int rc = updateInfo();161 AssertRC( rc); /* Not fatal in release builds. */ /** @todo r=bird: The function always returns VINF_SUCCESS. */160 int vrc = updateInfo(); 161 AssertRC(vrc); /* Not fatal in release builds. */ /** @todo r=bird: The function always returns VINF_SUCCESS. */ 162 162 163 163 while (!ASMAtomicReadBool(&m->m_fStop))
Note:
See TracChangeset
for help on using the changeset viewer.