Closed
Bug 248216
Opened 21 years ago
Closed 21 years ago
Mismatched new[]/delete in nsTextFrame.cpp
Categories
(Core :: Layout: Text and Fonts, defect)
Core
Layout: Text and Fonts
Tracking
()
RESOLVED
FIXED
People
(Reporter: pkwarren, Assigned: pkwarren)
Details
Attachments
(1 file)
766 bytes,
patch
|
dbaron
:
review+
dbaron
:
superreview+
|
Details | Diff | Splinter Review |
In nsTextFrame.cpp, mTypes is allocated with the C++ array new, but is not freed
with the array delete. Since it is an array of basic types, I don't this this
affects anything, but it should be fixed for consistency.
Assignee | ||
Comment 1•21 years ago
|
||
Assignee: nobody → pkwarren
Status: NEW → ASSIGNED
Assignee | ||
Updated•21 years ago
|
Attachment #151484 -
Flags: superreview?(dbaron)
Attachment #151484 -
Flags: review?(dbaron)
Attachment #151484 -
Flags: superreview?(dbaron)
Attachment #151484 -
Flags: superreview+
Attachment #151484 -
Flags: review?(dbaron)
Attachment #151484 -
Flags: review+
Assignee | ||
Comment 2•21 years ago
|
||
Fixed.
Checking in nsTextFrame.cpp;
/cvsroot/mozilla/layout/html/base/src/nsTextFrame.cpp,v <-- nsTextFrame.cpp
new revision: 1.465; previous revision: 1.464
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•