WebKit Bugzilla
Attachment 346495 Details for
Bug 188308
: ContentFilterUnblockHandler's constructors access moved-from variables
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-188308-20180803090517.patch (text/plain), 2.19 KB, created by
Andy Estes
on 2018-08-03 09:05:18 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Andy Estes
Created:
2018-08-03 09:05:18 PDT
Size:
2.19 KB
patch
obsolete
>Subversion Revision: 234546 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 4e4c656edbe3dce65691cbf377555f806a4313ec..b75768fde7895c14f309b185f51b9dbae0c38e5a 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,13 @@ >+2018-08-03 Andy Estes <aestes@apple.com> >+ >+ ContentFilterUnblockHandler's constructors access moved-from variables >+ https://bugs.webkit.org/show_bug.cgi?id=188308 >+ <rdar://problem/42882758> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * platform/cocoa/ContentFilterUnblockHandlerCocoa.mm: >+ > 2018-08-03 Zalan Bujtas <zalan@apple.com> > > [LFC][Floating] Now that the document renderer belongs to "complicated cases", adjust viewport stretching. >diff --git a/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm b/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm >index ae95eacded827cdc987a7def699617a252c387fe..b455c20faec8191bbc9ea66e1cbc2531897cef75 100644 >--- a/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm >+++ b/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm >@@ -60,7 +60,7 @@ ContentFilterUnblockHandler::ContentFilterUnblockHandler(String unblockURLHost, > : m_unblockURLHost { WTFMove(unblockURLHost) } > , m_unblockRequester { WTFMove(unblockRequester) } > { >- LOG(ContentFiltering, "Creating ContentFilterUnblockHandler with an unblock requester and unblock URL host <%s>.\n", unblockURLHost.ascii().data()); >+ LOG(ContentFiltering, "Creating ContentFilterUnblockHandler with an unblock requester and unblock URL host <%s>.\n", m_unblockURLHost.ascii().data()); > } > > #if HAVE(PARENTAL_CONTROLS) && PLATFORM(IOS) >@@ -68,7 +68,7 @@ ContentFilterUnblockHandler::ContentFilterUnblockHandler(String unblockURLHost, > : m_unblockURLHost { WTFMove(unblockURLHost) } > , m_webFilterEvaluator { WTFMove(evaluator) } > { >- LOG(ContentFiltering, "Creating ContentFilterUnblockHandler with a WebFilterEvaluator and unblock URL host <%s>.\n", unblockURLHost.ascii().data()); >+ LOG(ContentFiltering, "Creating ContentFilterUnblockHandler with a WebFilterEvaluator and unblock URL host <%s>.\n", m_unblockURLHost.ascii().data()); > } > #endif >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 188308
: 346495