Closed
Bug 1024223
Opened 11 years ago
Closed 11 years ago
PixmanTransform leaks |dest| and |src| if pixman_transform_invert returns false
Categories
(Core :: Graphics: Layers, defect)
Core
Graphics: Layers
Tracking
()
RESOLVED
FIXED
mozilla33
People
(Reporter: mccr8, Assigned: wlitwinczyk, Mentored)
References
(Blocks 1 open bug)
Details
(Keywords: coverity, memory-leak, Whiteboard: [MemShrink:P3][CID 1136595][CID 1136596])
Attachments
(1 file, 1 obsolete file)
|
1.20 KB,
patch
|
mattwoodrow
:
review+
|
Details | Diff | Splinter Review |
pixman_image_t* dest = pixman_image_create_bits(aDest->Format() == gfxImageFormat::ARGB32 ? PIXMAN_a8r8g8b8 : PIXMAN_x8r8g8b8,
destSize.width,
destSize.height,
(uint32_t*)aDest->Data(),
aDest->Stride());
...
pixman_image_t* src = pixman_image_create_bits(aSrc->GetFormat() == SurfaceFormat::B8G8R8A8 ? PIXMAN_a8r8g8b8 : PIXMAN_x8r8g8b8,
srcSize.width,
srcSize.height,
(uint32_t*)aSrc->GetData(),
aSrc->Stride());
...
if (!pixman_transform_invert(&pixTransformInverted, &pixTransform)) {
// src and dst leak
return;
}
Updated•11 years ago
|
Whiteboard: [MemShrink][CID 1136595][CID 1136596] → [MemShrink:P3][CID 1136595][CID 1136596]
| Reporter | ||
Comment 1•11 years ago
|
||
http://mxr.mozilla.org/mozilla-central/source/gfx/layers/basic/BasicLayerManager.cpp#753
Note that BasicCompositor seems to have this same code, except it doesn't leak, so maybe all that is needed is to do the same thing:
http://mxr.mozilla.org/mozilla-central/source/gfx/layers/basic/BasicCompositor.cpp#215
Mentor: continuation
Updated•11 years ago
|
Assignee: nobody → wlitwinczyk
| Assignee | ||
Comment 2•11 years ago
|
||
Hi Andrew,
Would you mind seeing if this patch fixes the leak?
Flags: needinfo?(continuation)
| Reporter | ||
Comment 3•11 years ago
|
||
This is actually something detected by Coverity static analysis, so I don't have any way to check this myself, but I think based on comment 1 it should be okay, as I think Coverity didn't give a leak warning for the BasicCompositor.
Flags: needinfo?(continuation)
| Assignee | ||
Comment 4•11 years ago
|
||
Attachment #8453198 -
Attachment is obsolete: true
Attachment #8453318 -
Flags: review?(matt.woodrow)
Updated•11 years ago
|
Attachment #8453318 -
Flags: review?(matt.woodrow) → review+
| Assignee | ||
Comment 5•11 years ago
|
||
Try: https://tbpl.mozilla.org/?tree=Try&rev=dca1d1c5f622
(ignore the misnaming)
Keywords: checkin-needed
Comment 6•11 years ago
|
||
Keywords: checkin-needed
Comment 7•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla33
Updated•7 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•