Ticket #10924: 0001-Don-t-finish-loading-when-unknown-authentication-typ.patch

File 0001-Don-t-finish-loading-when-unknown-authentication-typ.patch, 989 bytes (added by markh, 8 years ago)

Fix for handling of unknown authentication type

  • Source/WebCore/platform/network/haiku/BUrlProtocolHandler.cpp

    From 32df954de31975677172b90be75d1b7aba6cf4d4 Mon Sep 17 00:00:00 2001
    From: Mark Hellegers <mark@firedisk.net>
    Date: Mon, 29 Feb 2016 23:06:51 +0100
    Subject: [PATCH] Don't finish loading when unknown authentication type is
     encountered
    
    ---
     Source/WebCore/platform/network/haiku/BUrlProtocolHandler.cpp | 1 -
     1 file changed, 1 deletion(-)
    
    diff --git a/Source/WebCore/platform/network/haiku/BUrlProtocolHandler.cpp b/Source/WebCore/platform/network/haiku/BUrlProtocolHandler.cpp
    index 6c668cb..6b574ac 100644
    a b void BUrlProtocolHandler::AuthenticationNeeded(BHttpRequest* request, ResourceRe  
    411411    else {
    412412        // Unknown authentication type, ignore (various websites are intercepting the auth and
    413413        // handling it by themselves)
    414         client->didFinishLoading(m_resourceHandle, 0);
    415414        return;
    416415    }
    417416