Title: [234550] trunk/Source/WebCore
Revision
234550
Author
[email protected]
Date
2018-08-03 10:51:04 -0700 (Fri, 03 Aug 2018)

Log Message

ContentFilterUnblockHandler's constructors access moved-from variables
https://bugs.webkit.org/show_bug.cgi?id=188308
<rdar://problem/42882758>

Reviewed by Alex Christensen.

* platform/cocoa/ContentFilterUnblockHandlerCocoa.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (234549 => 234550)


--- trunk/Source/WebCore/ChangeLog	2018-08-03 17:48:47 UTC (rev 234549)
+++ trunk/Source/WebCore/ChangeLog	2018-08-03 17:51:04 UTC (rev 234550)
@@ -1,3 +1,13 @@
+2018-08-03  Andy Estes  <[email protected]>
+
+        ContentFilterUnblockHandler's constructors access moved-from variables
+        https://bugs.webkit.org/show_bug.cgi?id=188308
+        <rdar://problem/42882758>
+
+        Reviewed by Alex Christensen.
+
+        * platform/cocoa/ContentFilterUnblockHandlerCocoa.mm:
+
 2018-08-03  Zalan Bujtas  <[email protected]>
 
         [LFC][Floating] Now that the document renderer belongs to "complicated cases", adjust viewport stretching.

Modified: trunk/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm (234549 => 234550)


--- trunk/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm	2018-08-03 17:48:47 UTC (rev 234549)
+++ trunk/Source/WebCore/platform/cocoa/ContentFilterUnblockHandlerCocoa.mm	2018-08-03 17:51:04 UTC (rev 234550)
@@ -60,7 +60,7 @@
     : 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 @@
     : 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
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to