Closed
Bug 897255
Opened 11 years ago
Closed 10 years ago
Wasted work in line_uniq()
Categories
(Core :: Spelling checker, defect)
Tracking
()
RESOLVED
FIXED
mozilla33
People
(Reporter: pchang9, Assigned: pchang9)
References
Details
(Keywords: perf, Whiteboard: [fixed-in-hunspell-1.3.3])
Attachments
(1 file)
612 bytes,
patch
|
Details | Diff | Splinter Review |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0 (Beta/Release)
Build ID: 20130316161634
Steps to reproduce:
The problem appears in changeset 138350:18467a85acf6. I have attached a simple one-line patch that fixes it.
In method line_uniq() in extensions/spellcheck/hunspell/src/csutil.cpp, the loop on line 399 should break immediately after "dup" is set to "1". All the iterations after "dup" is set to "1" do not perform any useful work, at best they just set "dup" again to "1".
Expected results:
Break loop after "dup" is set to "1".
Attachment #780039 -
Flags: review?(pchang9)
Updated•11 years ago
|
Component: Untriaged → Spelling checker
Product: Firefox → Core
Comment 1•11 years ago
|
||
This patch might similarly need to be upstreamed: http://sourceforge.net/p/hunspell/bugs/
Comment 2•11 years ago
|
||
committed to hunspell HEAD now, thanks
Status: UNCONFIRMED → NEW
Ever confirmed: true
Updated•11 years ago
|
Whiteboard: [fixed-in-hunspell-1.3.3]
Updated•10 years ago
|
Depends on: hunspell-1.3.3
Updated•10 years ago
|
Attachment #780039 -
Attachment is patch: true
Attachment #780039 -
Flags: review?(pchang9)
Comment 3•10 years ago
|
||
Fixed on mozilla-central by bug 1022262.
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla33
Updated•10 years ago
|
Assignee: nobody → pchang9
You need to log in
before you can comment on or make changes to this bug.
Description
•