summaryrefslogtreecommitdiff
path: root/chromium/components/os_crypt/ie7_password_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/os_crypt/ie7_password_win.cc')
-rw-r--r--chromium/components/os_crypt/ie7_password_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/components/os_crypt/ie7_password_win.cc b/chromium/components/os_crypt/ie7_password_win.cc
index f5e9ac1ce20..5a3abc03c26 100644
--- a/chromium/components/os_crypt/ie7_password_win.cc
+++ b/chromium/components/os_crypt/ie7_password_win.cc
@@ -138,7 +138,7 @@ bool DecryptPasswords(const std::wstring& url,
url_key.cbData = static_cast<DWORD>((lower_case_url.size() + 1) *
sizeof(std::wstring::value_type));
- if (CryptUnprotectData(&input, NULL, &url_key, NULL, NULL,
+ if (CryptUnprotectData(&input, nullptr, &url_key, nullptr, nullptr,
CRYPTPROTECT_UI_FORBIDDEN, &output)) {
// Now that we have the decrypted information, we need to understand it.
std::vector<unsigned char> decrypted_data;