Closed
Bug 1140059
Opened 10 years ago
Closed 10 years ago
LSAN-detected leaks in the profiler
Categories
(Core :: Gecko Profiler, defect)
Tracking
()
RESOLVED
FIXED
mozilla39
| Tracking | Status | |
|---|---|---|
| firefox39 | --- | fixed |
People
(Reporter: shu, Unassigned)
Details
Attachments
(1 file, 1 obsolete file)
|
4.01 KB,
patch
|
mstange
:
review+
|
Details | Diff | Splinter Review |
Comment 1•10 years ago
|
||
I love manual memory management...
Comment 2•10 years ago
|
||
This is about mThreadNameFilters, which gets allocated here: https://hg.mozilla.org/mozilla-central/annotate/56492f7244a9/tools/profiler/TableTicker.h#l90
| Reporter | ||
Comment 3•10 years ago
|
||
Attachment #8573597 -
Flags: review?(mstange)
Comment 4•10 years ago
|
||
Comment on attachment 8573597 [details] [diff] [review]
Stop leaking mThreadNameFilters in the profiler.
I think UniquePtr<char> ends up doing delete theChar, and not delete[] or free(). I think what we need here is free(). Can you try using an nsString or nsCString or std::string instead?
Attachment #8573597 -
Flags: review?(mstange)
| Reporter | ||
Comment 5•10 years ago
|
||
Attachment #8573597 -
Attachment is obsolete: true
Attachment #8573607 -
Flags: review?(mstange)
Comment 6•10 years ago
|
||
Comment on attachment 8573607 [details] [diff] [review]
Stop leaking mThreadNameFilters in the profiler.
Review of attachment 8573607 [details] [diff] [review]:
-----------------------------------------------------------------
::: tools/profiler/TableTicker.h
@@ +9,5 @@
> #include "platform.h"
> #include "ProfileEntry.h"
> #include "mozilla/Mutex.h"
> +#include "mozilla/Vector.h"
> +#include "mozilla/UniquePtr.h"
Looks like you don't need this anymore.
Attachment #8573607 -
Flags: review?(mstange) → review+
Comment 7•10 years ago
|
||
(In reply to Markus Stange [:mstange] from comment #4)
> I think UniquePtr<char> ends up doing delete theChar, and not delete[] or
> free(). I think what we need here is free(). Can you try using an nsString
> or nsCString or std::string instead?
It's also possible to use UniquePtr with a deleter class that calls free(), if a string class won't work here.
Comment 8•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox39:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla39
You need to log in
before you can comment on or make changes to this bug.
Description
•