diff options
author | Ptyl Dragon <ptyl@cloudon.com> | 2014-05-08 15:58:50 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-05-08 16:59:53 +0300 |
commit | 4b1ccdefe2594d8bec9343171c15ff1f90ac97bf (patch) | |
tree | 53994826d9898c8712bb049fd0a8fc8f0ee50470 /vcl/quartz | |
parent | d6f5d4ee2cd0654497f1af37421d788411db762c (diff) |
fix memory leaks in vcl quartz
Change-Id: Ifb6a924759b8a3a7f459f2335144ca4dda434cb9
Diffstat (limited to 'vcl/quartz')
-rw-r--r-- | vcl/quartz/ctfonts.cxx | 1 | ||||
-rw-r--r-- | vcl/quartz/ctlayout.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx index 029caed18702..919ac5d557c4 100644 --- a/vcl/quartz/ctfonts.cxx +++ b/vcl/quartz/ctfonts.cxx @@ -207,6 +207,7 @@ bool CoreTextStyle::GetGlyphOutline( sal_GlyphId aGlyphId, basegfx::B2DPolyPolyg const CGPathElement aClosingElement = { kCGPathElementCloseSubpath, NULL }; MyCGPathApplierFunc( (void*)&aGgoData, &aClosingElement ); #endif + CFRelease( xPath ); return true; } diff --git a/vcl/quartz/ctlayout.cxx b/vcl/quartz/ctlayout.cxx index 93764025cd28..5c611500572f 100644 --- a/vcl/quartz/ctlayout.cxx +++ b/vcl/quartz/ctlayout.cxx @@ -552,6 +552,7 @@ sal_Int32 CTLayout::GetTextBreak( long nMaxWidth, long /*nCharExtra*/, int nFact CTTypesetterRef aCTTypeSetter = CTTypesetterCreateWithAttributedString( mpAttrString ); const double fCTMaxWidth = (double)nMaxWidth / nFactor; CFIndex nIndex = CTTypesetterSuggestClusterBreak( aCTTypeSetter, 0, fCTMaxWidth ); + CFRelease( aCTTypeSetter ); if( nIndex >= mnCharCount ) return -1; |