Changeset 35721 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jan 26, 2011 10:47:26 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
r35638 r35721 2409 2409 * to the extension pack object may become invalid. 2410 2410 * 2411 * @returns S_OK and * ppExtPack on success, COM status code and error message2412 * on failure.2411 * @returns S_OK and *a_ppExtPack on success, COM status code and error 2412 * message on failure. Note that *a_ppExtPack can be NULL. 2413 2413 * 2414 2414 * @param a_pszName The extension to update.. … … 2607 2607 { 2608 2608 hrc = refreshExtPack(pStrName->c_str(), true /*a_fUnusableIsError*/, &pExtPack); 2609 if (SUCCEEDED(hrc) )2609 if (SUCCEEDED(hrc) && pExtPack) 2610 2610 { 2611 2611 RTERRINFOSTATIC ErrInfo; … … 2633 2633 } 2634 2634 } 2635 else if (SUCCEEDED(hrc)) 2636 hrc = setError(E_FAIL, tr("Installing extension pack '%s' failed under mysterious circumstances"), 2637 pStrName->c_str()); 2635 2638 } 2636 2639 else
Note:
See TracChangeset
for help on using the changeset viewer.