Closed
Bug 248694
Opened 21 years ago
Closed 21 years ago
nsIParser::GetCommand is a wide string for no reason
Categories
(Core :: DOM: HTML Parser, defect)
Tracking
()
RESOLVED
FIXED
mozilla1.8alpha3
People
(Reporter: Biesinger, Assigned: Biesinger)
References
()
Details
Attachments
(1 file, 1 obsolete file)
|
5.99 KB,
patch
|
Details | Diff | Splinter Review |
all places would, really, prefer an nsACString&
| Assignee | ||
Comment 1•21 years ago
|
||
| Assignee | ||
Updated•21 years ago
|
Attachment #151725 -
Flags: review?(choess)
| Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla1.8alpha2
| Assignee | ||
Comment 2•21 years ago
|
||
oops, this misses a change to nsParser.h, to change the prototype to nsCString&
too... but I'm not going to attach a new patch for that unless requested
| Assignee | ||
Updated•21 years ago
|
Target Milestone: mozilla1.8alpha2 → mozilla1.8beta
| Assignee | ||
Updated•21 years ago
|
Attachment #151725 -
Flags: superreview?(bzbarsky)
Attachment #151725 -
Flags: review?(choess)
Attachment #151725 -
Flags: review?(bzbarsky)
Comment 3•21 years ago
|
||
Comment on attachment 151725 [details] [diff] [review]
patch
>Index: parser/htmlparser/src/nsParser.cpp
>@@ -449,13 +449,13 @@ NS_IMETHODIMP_(void) nsParser::SetComman
> nsCAutoString theCommand(aCommand);
> if(theCommand.Equals(kViewSourceCommand))
> mCommand=eViewSource;
> else if(theCommand.Equals(kViewFragmentCommand))
> mCommand=eViewFragment;
> else mCommand=eViewNormal;
>- mCommandStr.AssignWithConversion(aCommand);
>+ mCommandStr.Assign(aCommand);
Why not set mCommandStr up front and the eliminate theCommand (and just call
equals on mCommandStr in that if cascade)?
r+sr=bzbarsky with that change.
Attachment #151725 -
Flags: superreview?(bzbarsky)
Attachment #151725 -
Flags: superreview+
Attachment #151725 -
Flags: review?(bzbarsky)
Attachment #151725 -
Flags: review+
| Assignee | ||
Comment 4•21 years ago
|
||
Attachment #151725 -
Attachment is obsolete: true
| Assignee | ||
Comment 5•21 years ago
|
||
Checking in parser/htmlparser/public/nsIParser.h;
/cvsroot/mozilla/parser/htmlparser/public/nsIParser.h,v <-- nsIParser.h
new revision: 1.26; previous revision: 1.25
done
Checking in parser/htmlparser/src/nsParser.cpp;
/cvsroot/mozilla/parser/htmlparser/src/nsParser.cpp,v <-- nsParser.cpp
new revision: 3.345; previous revision: 3.344
done
Checking in parser/htmlparser/src/nsParser.h;
/cvsroot/mozilla/parser/htmlparser/src/nsParser.h,v <-- nsParser.h
new revision: 3.128; previous revision: 3.127
done
Checking in content/xml/document/src/nsXMLContentSink.cpp;
/cvsroot/mozilla/content/xml/document/src/nsXMLContentSink.cpp,v <--
nsXMLContentSink.cpp
new revision: 1.328; previous revision: 1.327
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
| Assignee | ||
Updated•21 years ago
|
Target Milestone: mozilla1.8beta → mozilla1.8alpha3
You need to log in
before you can comment on or make changes to this bug.
Description
•