diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-19 11:25:25 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-07-20 23:23:16 +0200 |
commit | fe26ed8a5d224b133c48e2846b851d585460ad30 (patch) | |
tree | b62288613dd14f293dc1cd818122cba51a50709a /src/Mount/Mount.c | |
parent | d78a3d02737d230e30139498125415444f65e78c (diff) | |
download | VeraCrypt-fe26ed8a5d224b133c48e2846b851d585460ad30.tar.gz VeraCrypt-fe26ed8a5d224b133c48e2846b851d585460ad30.zip |
Windows: in case of mounting system favorites, call driver to get list of drives instead of using SetupAPI in order to fix some rare issues where some disks were not detected at boot.
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 6a7e1353..51a7c98a 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -494,9 +494,9 @@ static void InitMainDialog (HWND hwndDlg) e.Show (NULL); } // initialize the list of devices available for mounting as early as possible - UpdateMountableHostDeviceList (); + UpdateMountableHostDeviceList (false); // Resize the logo bitmap if the user has a non-default DPI if (ScreenDPI != USER_DEFAULT_SCREEN_DPI && hbmLogoBitmapRescaled == NULL) // If not re-called (e.g. after language pack change) @@ -7118,9 +7118,9 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa case WM_TIMER: { if (wParam == TIMER_ID_UPDATE_DEVICE_LIST) { - UpdateMountableHostDeviceList (); + UpdateMountableHostDeviceList (false); } else { // Check mount list and update GUI if needed @@ -9167,9 +9167,9 @@ static VOID WINAPI SystemFavoritesServiceMain (DWORD argc, LPTSTR *argv) SystemFavoritesServiceSetStatus (SERVICE_START_PENDING, 120000); SystemFavoritesServiceLogInfo (wstring (L"Initializing list of host devices")); // initialize the list of devices available for mounting as early as possible - UpdateMountableHostDeviceList (); + UpdateMountableHostDeviceList (true); SystemFavoritesServiceLogInfo (wstring (L"Starting System Favorites mounting process")); try @@ -9701,9 +9701,9 @@ BOOL MountFavoriteVolumes (HWND hwnd, BOOL systemFavorites, BOOL logOnMount, BOO { Sleep (5000); SystemFavoritesServiceLogInfo (wstring (L"Updating list of host devices")); - UpdateMountableHostDeviceList (); + UpdateMountableHostDeviceList (true); SystemFavoritesServiceLogInfo (wstring (L"Trying to mount skipped system favorites")); // Update the service status to avoid being killed |