Changeset 104561 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- May 8, 2024 3:43:46 PM (10 months ago)
- svn:sync-xref-src-repo-rev:
- 163099
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/VBoxGuestControlSvc.cpp
r102654 r104561 1824 1824 * Do the work. 1825 1825 */ 1826 int rc = V WRN_NOT_FOUND;1826 int rc = VINF_SUCCESS; 1827 1827 if (idSession == UINT32_MAX) 1828 1828 { … … 1832 1832 RTListNodeRemove(&pCur->ListEntry); 1833 1833 RTMemFree(pCur); 1834 rc = VINF_SUCCESS;1835 1834 } 1836 1835 m_cPreparedSessions = 0; … … 1838 1837 else 1839 1838 { 1839 rc = VWRN_NOT_FOUND; 1840 1840 GstCtrlPreparedSession *pCur, *pNext; 1841 1841 RTListForEachSafe(&m_PreparedSessions, pCur, pNext, GstCtrlPreparedSession, ListEntry) … … 1851 1851 } 1852 1852 } 1853 return VINF_SUCCESS;1853 return rc; 1854 1854 } 1855 1855
Note:
See TracChangeset
for help on using the changeset viewer.