Skip to content

Commit

Permalink
[IEDriver] Fix potential null pointer access in CookieManager
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Oct 7, 2023
1 parent 0f8e018 commit 023a0d5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion cpp/iedriver/CookieManager.cpp
Expand Up @@ -522,11 +522,21 @@ LRESULT CALLBACK CookieWndProc(int nCode, WPARAM wParam, LPARAM lParam) {
all_cookies.append(L"\n*\n");
}
INTERNETCOOKIE2* current_cookie = cookie_pointer + cookie_index;
std::wstring cookie_name = current_cookie->pwszName;
std::wstring cookie_name = L"";
if (current_cookie->pwszName) {
// Note that the spec appears to allow "nameless" cookies,
// which clients like Selenium may not support.
cookie_name = current_cookie->pwszName;
}
std::wstring cookie_value = L"";
if (current_cookie->pwszValue) {
cookie_value = current_cookie->pwszValue;
}

// TODO: The spec does not allow a cookie with an empty name
// and value. It's unclear what the driver could do in this
// case, but we should probably handle it somehow in the off
// chance it ever comes up.
std::wstring cookie_domain = L"";
if (current_cookie->pwszDomain) {
cookie_domain = current_cookie->pwszDomain;
Expand Down

0 comments on commit 023a0d5

Please sign in to comment.