diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-05 00:56:11 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-05-05 01:12:51 +0200 |
commit | fc89bf6e2cc1c34d705a73613f8d15df516ec009 (patch) | |
tree | c6b5ce72210167e18a1adb505e45613d302af19b /src | |
parent | b261177b8f5bc3f8495406d13dc03c0328b930f9 (diff) | |
download | VeraCrypt-fc89bf6e2cc1c34d705a73613f8d15df516ec009.tar.gz VeraCrypt-fc89bf6e2cc1c34d705a73613f8d15df516ec009.zip |
Windows: Fix compilation error caused by previous commit
Diffstat (limited to 'src')
-rw-r--r-- | src/Mount/Favorites.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Mount/Favorites.cpp b/src/Mount/Favorites.cpp index af5f9b0d..10eb6486 100644 --- a/src/Mount/Favorites.cpp +++ b/src/Mount/Favorites.cpp @@ -123,6 +123,7 @@ namespace VeraCrypt */
WORD lw = LOWORD (wParam);
+ WORD hw = HIWORD (wParam);
static bool SystemFavoritesMode;
static vector <FavoriteVolume> Favorites;
static int SelectedItem;
@@ -615,7 +616,7 @@ namespace VeraCrypt XmlGetAttributeText (xml, "pin", label, sizeof (label));
}
favorite.Pim = strtol (label, NULL, 10);
- if (favorite.Pim < 0 || favorite.Pim > (systemFavorite? MAX_BOOT_PIM_VALUE : MAX_PIM_VALUE))
+ if (favorite.Pim < 0 || favorite.Pim > (systemFavorites? MAX_BOOT_PIM_VALUE : MAX_PIM_VALUE))
favorite.Pim = 0;
char boolVal[2];
|