Source/WebCore/ChangeLog

 12017-08-30 Michael Catanzaro <mcatanzaro@igalia.com>
 2
 3 REGRESSION(r221226): [SOUP] libsoup-CRITICAL **: soup_cookies_to_cookie_header: assertion 'cookies != NULL' failed
 4 https://bugs.webkit.org/show_bug.cgi?id=176140
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 This should fix unexpected stderr output in several tests.
 9
 10 * platform/network/soup/CookieJarSoup.cpp:
 11 (WebCore::cookiesForSession):
 12
1132017-08-28 Joseph Pecoraro <pecoraro@apple.com>
214
315 REGRESSION(r220278): Web Inspector: ContextMenu items are not getting triggered

Source/WebCore/platform/network/soup/CookieJarSoup.cpp

@@static std::pair<String, bool> cookiesForSession(const NetworkStorageSession& se
8686{
8787 GUniquePtr<SoupURI> uri = url.createSoupURI();
8888 GSList* cookies = soup_cookie_jar_get_cookie_list(session.cookieStorage(), uri.get(), forHTTPHeader);
89  bool didAccessSecureCookies = false;
 89 if (!cookies)
 90 return { { }, false };
9091
 92 bool didAccessSecureCookies = false;
9193 // libsoup should omit secure cookies itself if the protocol is not https.
9294 if (url.protocolIs("https")) {
9395 GSList* item = cookies;