Closed
Bug 503195
Opened 16 years ago
Closed 16 years ago
Using Places nodes' PropertyBags leaks
Categories
(Toolkit :: Places, defect)
Toolkit
Places
Tracking
()
RESOLVED
FIXED
mozilla1.9.2a1
People
(Reporter: mak, Assigned: mak)
Details
Attachments
(1 file, 3 obsolete files)
|
6.03 KB,
patch
|
Details | Diff | Splinter Review |
I was playing with them, and noticed we don't handle them during cycle collection.
| Assignee | ||
Comment 1•16 years ago
|
||
Attachment #387571 -
Flags: review?(dietrich)
Comment 2•16 years ago
|
||
Comment on attachment 387571 [details] [diff] [review]
patch v1.0
>+ * The Initial Developer of the Original Code is Mozilla Corporation
nit: new line for company name
>+function run_test() {
nit: { on newline
>+ try {
>+ rootNode.propertyBag.getProperty("testProperty");
>+ do_throw("Found property in the propertyBag after removing it");
>+ } catch(ex) {}
nit: catch on newline
>+ rootNode.containerOpen = false;
>+ try {
>+ rootNode.propertyBag.getProperty("testProperty");
>+ do_throw("Found property in the propertyBag after removing it");
>+ } catch(ex) {}
ditto
r=sdwilsh
Attachment #387571 -
Flags: review?(dietrich) → review+
| Assignee | ||
Comment 3•16 years ago
|
||
Attachment #387571 -
Attachment is obsolete: true
| Assignee | ||
Comment 4•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Target Milestone: --- → mozilla1.9.2a1
| Assignee | ||
Comment 5•16 years ago
|
||
for some unknown reason this did compile here, but does not compile on tinderboxes, backed out.
http://hg.mozilla.org/mozilla-central/rev/75393a766e00
http://hg.mozilla.org/mozilla-central/rev/31a51fa6ce76
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 6•16 years ago
|
||
i missed a pointer
Attachment #387613 -
Attachment is obsolete: true
| Assignee | ||
Comment 7•16 years ago
|
||
Attachment #387623 -
Attachment is obsolete: true
| Assignee | ||
Comment 8•16 years ago
|
||
Status: REOPENED → RESOLVED
Closed: 16 years ago → 16 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•