[Webkit-unassigned] [Bug 29322] REGRESSION: http/tests/xmlhttprequest/cross-origin-authorization.html is failing intermittently

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Sep 28 16:10:43 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=29322





--- Comment #39 from Eric Seidel <eric at webkit.org>  2009-09-28 16:10:42 PDT ---
(From update of attachment 40268)
        if (!delegate->m_initialCredential.isEmpty()) {
            // Apply basic auth header
            String unencoded = delegate->m_initialCredential.user() + ":" +
delegate->m_initialCredential.password();
            CString encoded = unencoded.utf8().base64Encode();
            String authHeader = String::format("Basic %s", encoded.data());
            requestWithInitialCredentials.addHTTPHeaderField("Authorization",
authHeader);
        }

Is the crashing code.  That could be related to the failures seen in this test.
It's possible that this test is flakey due to memory issues?

I'm also happy to file a separate bug for the crash if desired.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list