[Webkit-unassigned] [Bug 56439] Get rid of nearestMailBlockquote

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 16 15:25:34 PDT 2011


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


Tony Chang <tony at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #85984|review?                     |review-
               Flag|                            |




--- Comment #8 from Tony Chang <tony at chromium.org>  2011-03-16 15:25:34 PST ---
(From update of attachment 85984)
View in context: https://bugs.webkit.org/attachment.cgi?id=85984&action=review

> Source/WebCore/editing/htmlediting.h:118
> +    return node && editingIgnoresContent(node) ? positionBeforeNode(node) : firstPositionInNode(node);

This doesn't look right.  && has precedence over ?, so if |node| is NULL, we return firstPositionInNode(NULL).  That seems safe, but in lastPositionInOrAfterNode, we return lastPositionInNode(NULL), which calls lastOffsetInNode(NULL), which will try to dereference NULL.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list