summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/source/gdi/bitmapex.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx
index a2034944ae88..fc75f9e5b120 100644
--- a/vcl/source/gdi/bitmapex.cxx
+++ b/vcl/source/gdi/bitmapex.cxx
@@ -787,14 +787,15 @@ bool BitmapEx::Create( const css::uno::Reference< css::rendering::XBitmapCanvas
}
}
- SalBitmap* pSalBmp, *pSalMask;
+ SalBitmap* pSalBmp = nullptr;
+ SalBitmap* pSalMask = nullptr;
pSalBmp = ImplGetSVData()->mpDefInst->CreateSalBitmap();
- pSalMask = ImplGetSVData()->mpDefInst->CreateSalBitmap();
Size aLocalSize(rSize);
if( pSalBmp->Create( xBitmapCanvas, aLocalSize ) )
{
+ pSalMask = ImplGetSVData()->mpDefInst->CreateSalBitmap();
if ( pSalMask->Create( xBitmapCanvas, aLocalSize, true ) )
{
*this = BitmapEx(Bitmap(pSalBmp), Bitmap(pSalMask) );
@@ -802,6 +803,7 @@ bool BitmapEx::Create( const css::uno::Reference< css::rendering::XBitmapCanvas
}
else
{
+ delete pSalMask;
*this = BitmapEx(Bitmap(pSalBmp));
return true;
}