Changeset 49795 in vbox for trunk/src/VBox/Main/src-server/HostImpl.cpp
- Timestamp:
- Dec 5, 2013 6:53:18 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/HostImpl.cpp
r49778 r49795 1857 1857 { 1858 1858 Medium *pCached = *itCached; 1859 const Utf8Str strLocationCached = pCached-> getLocationFull();1859 const Utf8Str strLocationCached = pCached->i_getLocationFull(); 1860 1860 bool fFound = false; 1861 1861 for (MediaList::iterator itNew = llNew.begin(); … … 1864 1864 { 1865 1865 Medium *pNew = *itNew; 1866 const Utf8Str strLocationNew = pNew-> getLocationFull();1866 const Utf8Str strLocationNew = pNew->i_getLocationFull(); 1867 1867 if (strLocationNew == strLocationCached) 1868 1868 { … … 1883 1883 { 1884 1884 Medium *pNew = *itNew; 1885 const Utf8Str strLocationNew = pNew-> getLocationFull();1885 const Utf8Str strLocationNew = pNew->i_getLocationFull(); 1886 1886 bool fFound = false; 1887 1887 for (MediaList::iterator itCached = pllCached->begin(); … … 1890 1890 { 1891 1891 Medium *pCached = *itCached; 1892 const Utf8Str strLocationCached = pCached-> getLocationFull();1892 const Utf8Str strLocationCached = pCached->i_getLocationFull(); 1893 1893 if (strLocationNew == strLocationCached) 1894 1894 { … … 1939 1939 AutoCaller mediumCaller(pThis); 1940 1940 AutoReadLock mediumLock(pThis COMMA_LOCKVAL_SRC_POS); 1941 if (pThis-> getId() == uuid)1941 if (pThis->i_getId() == uuid) 1942 1942 { 1943 1943 pMedium = pThis; … … 1979 1979 AutoCaller mediumCaller(pThis); 1980 1980 AutoReadLock mediumLock(pThis COMMA_LOCKVAL_SRC_POS); 1981 if (pThis-> getLocationFull() == strLocationFull)1981 if (pThis->i_getLocationFull() == strLocationFull) 1982 1982 { 1983 1983 pMedium = pThis;
Note:
See TracChangeset
for help on using the changeset viewer.