Changeset 33494 in vbox
- Timestamp:
- Oct 27, 2010 11:39:37 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/isofs.h
r33492 r33494 44 44 #define RTISOFS_MAX_PREPARER_ID 128 45 45 #define RTISOFS_MAX_APPLICATION_ID 128 46 #define RTISOFS_MAX_STRING_LEN 25 646 #define RTISOFS_MAX_STRING_LEN 255 47 47 48 48 /** Standard ID of volume descriptors. */ -
trunk/src/VBox/Main/GuestImpl.cpp
r33492 r33494 40 40 #include <VBox/pgm.h> 41 41 42 #include <memory> 43 42 44 // defines 43 45 ///////////////////////////////////////////////////////////////////////////// … … 245 247 * system rights, no username/password specified). 246 248 */ 247 rc = pGuest->executeProcessInternal(Bstr("vbox_cat") .raw(),249 rc = pGuest->executeProcessInternal(Bstr("vbox_cat"), 248 250 ExecuteProcessFlag_WaitForProcessStartOnly, 249 251 ComSafeArrayAsInParam(args), … … 332 334 ComPtr<IProgress> progressInstaller; 333 335 ULONG uPID; 334 rc = pGuest->executeProcessInternal(Bstr(strInstallerPath).raw(), 0 /* Flags */, 336 rc = pGuest->executeProcessInternal(Bstr(strInstallerPath), 337 0 /* Flags */, 335 338 ComSafeArrayAsInParam(installerArgs), 336 339 ComSafeArrayAsInParam(installerEnv), -
trunk/src/VBox/Runtime/r3/isofs.cpp
r33492 r33494 333 333 break; 334 334 335 Assert( pCurRecord->name_len > 0 336 && pCurRecord->name_len <= RTISOFS_MAX_STRING_LEN); 335 Assert(pCurRecord->name_len <= RTISOFS_MAX_STRING_LEN); 337 336 char *pszName = RTStrAlloc(pCurRecord->name_len + 1); 338 337 AssertPtr(pszName);
Note:
See TracChangeset
for help on using the changeset viewer.