WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
200589
Fix Crash in Mail Search
https://bugs.webkit.org/show_bug.cgi?id=200589
Summary
Fix Crash in Mail Search
Megan Gardner
Reported
2019-08-09 14:11:59 PDT
Fix Crash in Mail Search
Attachments
Patch
(1.57 KB, patch)
2019-08-09 14:14 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch
(1.57 KB, patch)
2019-08-09 14:38 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch
(1.58 KB, patch)
2019-08-09 14:45 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch
(1.58 KB, patch)
2019-08-09 14:56 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch
(3.47 KB, patch)
2019-08-09 15:33 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch for landing
(3.55 KB, patch)
2019-08-12 06:45 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch for landing
(3.57 KB, patch)
2019-08-12 13:12 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Show Obsolete
(6)
View All
Add attachment
proposed patch, testcase, etc.
Megan Gardner
Comment 1
2019-08-09 14:14:13 PDT
Created
attachment 375953
[details]
Patch
Tim Horton
Comment 2
2019-08-09 14:17:51 PDT
Comment on
attachment 375953
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=375953&action=review
> Source/WebKit/ChangeLog:10 > + It is possible for AppKit reasons to get a -1 for the index > + of the found item. Do not try and insert data in this case. > + > + Reviewed by NOBODY (OOPS!).
Something bad happened here with the order. Also, it would be nice to be more specific about the "AppKit reasons". Isn't it really about reverse search? (And then, why is it OK not to have any rects? does it actually behave correctly?)
> Source/WebKit/UIProcess/mac/WKTextFinderClient.mm:85 > + if (matchIndex > 0 && matchIndex < matchCount) > + allMatches[matchIndex].appendVector(matchRects);
matchIndex 0 is valid, so you want >=
Tim Horton
Comment 3
2019-08-09 14:18:17 PDT
Please test both Mail and Notes, forward and backward, in conversations and not (in Mail).
Tim Horton
Comment 4
2019-08-09 14:18:40 PDT
ALSO ALSO this should totally be API testable
Megan Gardner
Comment 5
2019-08-09 14:38:16 PDT
Created
attachment 375960
[details]
Patch
Megan Gardner
Comment 6
2019-08-09 14:45:07 PDT
Created
attachment 375962
[details]
Patch
Megan Gardner
Comment 7
2019-08-09 14:56:04 PDT
Created
attachment 375964
[details]
Patch
Megan Gardner
Comment 8
2019-08-09 15:33:09 PDT
Created
attachment 375968
[details]
Patch
Tim Horton
Comment 9
2019-08-09 15:50:49 PDT
Comment on
attachment 375968
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=375968&action=review
> Source/WebKit/UIProcess/mac/WKTextFinderClient.mm:84 > - allMatches[matchIndex].appendVector(matchRects); > + if (matchIndex >= 0 && (uint32_t)matchIndex < matchCount)
This is fine for now given current clients, but maybe leave a FIXME that we should have match rects when doing an incremental backwards search (did you test Notes??).
Wenson Hsieh
Comment 10
2019-08-09 19:28:12 PDT
<
rdar://problem/53666720
>
Ryosuke Niwa
Comment 11
2019-08-09 19:57:13 PDT
Comment on
attachment 375968
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=375968&action=review
>> Source/WebKit/UIProcess/mac/WKTextFinderClient.mm:84 >> + if (matchIndex >= 0 && (uint32_t)matchIndex < matchCount) > > This is fine for now given current clients, but maybe leave a FIXME that we should have match rects when doing an incremental backwards search (did you test Notes??).
Also, please use static_cast<uint32_t>.
Megan Gardner
Comment 12
2019-08-12 06:45:34 PDT
Created
attachment 376059
[details]
Patch for landing
Megan Gardner
Comment 13
2019-08-12 13:12:15 PDT
Created
attachment 376090
[details]
Patch for landing
WebKit Commit Bot
Comment 14
2019-08-12 14:41:03 PDT
Comment on
attachment 376090
[details]
Patch for landing Clearing flags on attachment: 376090 Committed
r248548
: <
https://trac.webkit.org/changeset/248548
>
WebKit Commit Bot
Comment 15
2019-08-12 14:41:04 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug