[Webkit-unassigned] [Bug 159980] [iOS] Apps using WKWebView will crash if they set the scroll view's delegate and don't nil it out later

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 21 14:45:39 PDT 2016


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

mitz at webkit.org <mitz at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #284260|review?                     |review+
              Flags|                            |

--- Comment #6 from mitz at webkit.org <mitz at webkit.org> ---
Comment on attachment 284260
  --> https://bugs.webkit.org/attachment.cgi?id=284260
v2 patch for [iOS] Apps using WKWebView will crash

View in context: https://bugs.webkit.org/attachment.cgi?id=284260&action=review

> Source/WebKit2/UIProcess/ios/WKScrollView.mm:47
> +    WebKit::WeakObjCPtr<id <UIScrollViewDelegate>> _externalDelegate;

I think you can add “using namespace WebKit” to this file and avoid the WebKit:: qualifier here and elsewhere.

> Source/WebKit2/UIProcess/ios/WKScrollView.mm:74
> +    auto externalDelegate = _externalDelegate.get();
> +    return [super respondsToSelector:aSelector] || [_internalDelegate respondsToSelector:aSelector] || [externalDelegate.get() respondsToSelector:aSelector];

Since you’re only using the external delegate once you don’t really have to have this local.

> Source/WebKit2/UIProcess/ios/WKScrollView.mm:140
> +    if (_externalDelegate.get().get() == delegate)

Yikes! I wonder if we should add a == override to WeakObjCPtr.

-- 
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/20160721/99af6a0f/attachment-0001.html>


More information about the webkit-unassigned mailing list