VirtualBox

Changeset 51764 in vbox


Ignore:
Timestamp:
Jun 30, 2014 12:14:09 PM (11 years ago)
Author:
vboxsync
Message:

don't insist on the presence of the crypt lib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r51754 r51764  
    41424142                    PCFGMNODE pCfgPlugin = NULL;
    41434143                    Utf8Str strPlugin;
    4144                     hrc = mptrExtPackManager->i_getLibraryPathForExtPack(s_pszVDPlugin, &strExtPackPuel, &strPlugin); H();
    4145 
    4146                     InsertConfigNode(pCfg, "Plugins", &pCfgPlugins);
    4147                     InsertConfigNode(pCfgPlugins, s_pszVDPlugin, &pCfgPlugin);
    4148                     InsertConfigString(pCfgPlugin, "Path", strPlugin.c_str());
     4144                    hrc = mptrExtPackManager->i_getLibraryPathForExtPack(s_pszVDPlugin, &strExtPackPuel, &strPlugin);
     4145                    // Don't fail, this is optional!
     4146                    if (SUCCEEDED(hrc))
     4147                    {
     4148                        InsertConfigNode(pCfg, "Plugins", &pCfgPlugins);
     4149                        InsertConfigNode(pCfgPlugins, s_pszVDPlugin, &pCfgPlugin);
     4150                        InsertConfigString(pCfgPlugin, "Path", strPlugin.c_str());
     4151                    }
    41494152                }
    41504153# endif
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette