[Webkit-unassigned] [Bug 160232] New: Memory leak in WebResourceLoadScheduler

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 26 22:23:37 PDT 2016


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

            Bug ID: 160232
           Summary: Memory leak in WebResourceLoadScheduler
    Classification: Unclassified
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: ank82del at gmail.com

The new HostInformation is being created in the constructor WebResourceLoadScheduler::WebResourceLoadScheduler
it should be deleted inside WebResourceLoadScheduler::~WebResourceLoadScheduler().

WebResourceLoadScheduler::WebResourceLoadScheduler()
    : m_nonHTTPProtocolHost(new HostInformation(String(), maxRequestsInFlightForNonHTTPProtocols))
    , m_requestTimer(*this, &WebResourceLoadScheduler::requestTimerFired)
    , m_suspendPendingRequestsCount(0)
    , m_isSerialLoadingEnabled(false)
{
    maxRequestsInFlightPerHost = initializeMaximumHTTPConnectionCountPerHost();
}

WebResourceLoadScheduler::~WebResourceLoadScheduler()
{
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160727/62ce38b3/attachment.html>


More information about the webkit-unassigned mailing list