Changeset 31345 in vbox
- Timestamp:
- Aug 3, 2010 10:13:16 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r31337 r31345 2047 2047 RTStrPrintf(pDrive->szDescription, sizeof(pDrive->szDescription), "%s %s", pszVendor, pszProduct); 2048 2048 RTStrCopy(pDrive->szRawDiskPath, sizeof(pDrive->szRawDiskPath), pszDevLinkPath); 2049 if (!*ppDrives) 2050 *ppDrives = pDrive; 2051 else 2052 (*ppDrives)->pNext = pDrive; 2049 if (*ppDrives) 2050 pDrive->pNext = *ppDrives; 2051 *ppDrives = pDrive; 2053 2052 } 2054 2053 }
Note:
See TracChangeset
for help on using the changeset viewer.