Closed
Bug 1116358
Opened 10 years ago
Closed 10 years ago
Directly call Release() on |this| when closing a GMP encoder/decoder proxies
Categories
(Core :: Audio/Video, defect)
Core
Audio/Video
Tracking
()
RESOLVED
FIXED
mozilla37
People
(Reporter: ehsan.akhgari, Assigned: ehsan.akhgari)
References
Details
Attachments
(1 file, 1 obsolete file)
|
3.01 KB,
patch
|
cpearce
:
review+
|
Details | Diff | Splinter Review |
No description provided.
| Assignee | ||
Comment 1•10 years ago
|
||
Attachment #8542367 -
Flags: review?(cpearce)
Comment 2•10 years ago
|
||
Comment on attachment 8542367 [details] [diff] [review]
Prevent double releasing |this| in the GMP code
Review of attachment 8542367 [details] [diff] [review]:
-----------------------------------------------------------------
::: dom/media/gmp/GMPAudioDecoderParent.cpp
@@ +147,5 @@
> mCallback = nullptr;
> // Let Shutdown mark us as dead so it knows if we had been alive
>
> // In case this is the last reference
> + Release();
Since this could be the last reference, Release() could lead to destructor and Shutdown() will be use-after-free?
Comment 3•10 years ago
|
||
Comment on attachment 8542367 [details] [diff] [review]
Prevent double releasing |this| in the GMP code
Review of attachment 8542367 [details] [diff] [review]:
-----------------------------------------------------------------
What JW said; the caller actually holds a raw pointer to this object (via a GMP*ParentProxy raw interface pointer), so the release done in Close() could drop the last reference on the object.
Attachment #8542367 -
Flags: review?(cpearce) → review-
| Assignee | ||
Comment 4•10 years ago
|
||
This is needed in order to avoid calling Release() on a smart pointer.
Attachment #8542582 -
Flags: review?(cpearce)
| Assignee | ||
Updated•10 years ago
|
Summary: Prevent double releasing |this| in the GMP code → Directly call Release() on |this| when closing a GMP encoder/decoder proxies
| Assignee | ||
Updated•10 years ago
|
Attachment #8542367 -
Attachment is obsolete: true
Updated•10 years ago
|
Attachment #8542582 -
Flags: review?(cpearce) → review+
| Assignee | ||
Comment 5•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla37
You need to log in
before you can comment on or make changes to this bug.
Description
•