RESOLVED FIXED 210759
When SpeculativeLoadManager is destroyed, properly clean up its PendingFrameLoads
https://bugs.webkit.org/show_bug.cgi?id=210759
Summary When SpeculativeLoadManager is destroyed, properly clean up its PendingFrameL...
Alex Christensen
Reported 2020-04-20 12:15:02 PDT
When SpeculativeLoadManager is destroyed, properly clean up its PendingFrameLoads
Attachments
Patch (2.93 KB, patch)
2020-04-20 12:21 PDT, Alex Christensen
no flags
Patch (2.70 KB, patch)
2020-04-20 12:30 PDT, Alex Christensen
no flags
Alex Christensen
Comment 1 2020-04-20 12:21:06 PDT
Alex Christensen
Comment 2 2020-04-20 12:21:09 PDT
Darin Adler
Comment 3 2020-04-20 12:28:33 PDT
Comment on attachment 396999 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=396999&action=review > Source/WebKit/NetworkProcess/cache/NetworkCacheSpeculativeLoadManager.cpp:274 > + Vector<RefPtr<PendingFrameLoad>> pendingFrameLoads; > + pendingFrameLoads.reserveInitialCapacity(m_pendingFrameLoads.size()); > + for (auto& pendingFrameLoad : m_pendingFrameLoads.values()) > + pendingFrameLoads.uncheckedAppend(pendingFrameLoad); > + for (auto& pendingFrameLoad : pendingFrameLoads) { You should be able to write this instead and get exactly the same effect: for (auto& pendingFrameLoad : copyToVector(m_pendingFrameLoads.values()))
Alex Christensen
Comment 4 2020-04-20 12:30:11 PDT
Alex Christensen
Comment 5 2020-04-20 12:35:08 PDT
Comment on attachment 397002 [details] Patch Aha! That's the idiom I was looking for.
EWS
Comment 6 2020-04-20 13:04:54 PDT
Committed r260390: <https://trac.webkit.org/changeset/260390> All reviewed patches have been landed. Closing bug and clearing flags on attachment 397002 [details].
Alex Christensen
Comment 7 2020-04-20 13:16:34 PDT
*** Bug 210744 has been marked as a duplicate of this bug. ***
Alex Christensen
Comment 8 2020-05-08 13:05:43 PDT
Note You need to log in before you can comment on or make changes to this bug.