diff options
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 7f677580..54dc8158 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -11732,13 +11732,14 @@ static BOOL CALLBACK BootLoaderPreferencesDlgProc (HWND hwndDlg, UINT msg, WPARA while (TextEditDialogBox(FALSE, hwndDlg, GetString ("BOOT_LOADER_CONFIGURATION_FILE"), dcsprop) == IDOK) { - if (0 == strcmp(dcsprop.c_str(), currentDcsprop.c_str())) + const char* dcspropContent = dcsprop.c_str(); + if (0 == strcmp(dcspropContent, currentDcsprop.c_str())) { break; } - else if (validateDcsPropXml (dcsprop.c_str())) + else if (validateDcsPropXml (dcspropContent)) { - WriteESPFile (L"\\EFI\\VeraCrypt\\DcsProp", (LPBYTE) dcsprop.c_str(), (DWORD) dcsprop.size(), true); + WriteESPFile (L"\\EFI\\VeraCrypt\\DcsProp", (LPBYTE) dcspropContent, (DWORD) strlen (dcspropContent), true); break; } else |