Kaydet (Commit) bf46dfdb authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud Kaydeden (comit) Fridrich Strba

coverity#983356 ressource leak

Change-Id: Idcc2d548363ddab04dd8acaa1dfb854a19ca47ef
Reviewed-on: https://gerrit.libreoffice.org/2200Reviewed-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
Tested-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
üst 349e9248
......@@ -1325,7 +1325,13 @@ void OdgGeneratorPrivate::_writeGraphicsStyle()
mGraphicsGradientStyles.push_back(new TagCloseElement("draw:opacity"));
}
}
else
{
/* if mxGradient.count() == 1 for some reason we would leak
* pDrawGradientElement
*/
delete pDrawGradientElement;
}
if(!bUseOpacityGradient)
delete pDrawOpacityElement;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment