Changeset 36527 in vbox for trunk/src/VBox/Main/src-helper-apps
- Timestamp:
- Apr 4, 2011 1:16:09 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp
r35712 r36527 869 869 * Ok, down to business. 870 870 */ 871 iprt::MiniString *pstrMangledName = VBoxExtPackMangleName(pszName);871 RTCString *pstrMangledName = VBoxExtPackMangleName(pszName); 872 872 if (!pstrMangledName) 873 873 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to mangle name ('%s)", pszName); … … 955 955 * Mangle the name so we can construct the directory names. 956 956 */ 957 iprt::MiniString *pstrMangledName = VBoxExtPackMangleName(pszName);957 RTCString *pstrMangledName = VBoxExtPackMangleName(pszName); 958 958 if (!pstrMangledName) 959 959 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to mangle name ('%s)", pszName); 960 iprt::MiniString strMangledName(*pstrMangledName);960 RTCString strMangledName(*pstrMangledName); 961 961 delete pstrMangledName; 962 962
Note:
See TracChangeset
for help on using the changeset viewer.