Title: [280925] trunk/Source/WebKit
Revision
280925
Author
[email protected]
Date
2021-08-11 13:00:46 -0700 (Wed, 11 Aug 2021)

Log Message

Fix iOS debug build after r280875
https://bugs.webkit.org/show_bug.cgi?id=228683

* UIProcess/ios/WKContentView.mm:
(-[WKContentView _removeTemporaryFilesIfNecessary]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (280924 => 280925)


--- trunk/Source/WebKit/ChangeLog	2021-08-11 19:44:55 UTC (rev 280924)
+++ trunk/Source/WebKit/ChangeLog	2021-08-11 20:00:46 UTC (rev 280925)
@@ -1,6 +1,14 @@
 2021-08-11  Alex Christensen  <[email protected]>
 
         Fix iOS debug build after r280875
+        https://bugs.webkit.org/show_bug.cgi?id=228683
+
+        * UIProcess/ios/WKContentView.mm:
+        (-[WKContentView _removeTemporaryFilesIfNecessary]):
+
+2021-08-11  Alex Christensen  <[email protected]>
+
+        Fix iOS debug build after r280875
        ​https://bugs.webkit.org/show_bug.cgi?id=228683
 
         * UIProcess/ios/WKContentView.mm:

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentView.mm (280924 => 280925)


--- trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2021-08-11 19:44:55 UTC (rev 280924)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2021-08-11 20:00:46 UTC (rev 280925)
@@ -338,7 +338,7 @@
                     LOG_ERROR("WKContentViewInteraction failed to remove file at path %@ with error %@", coordinatedURL.path, error);
             }];
             if (error)
-                LOG_ERROR("WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url, error);
+                LOG_ERROR("WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url.get(), error);
         }
     });
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to