[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - filter/source

Julien Nabet serval2412 at yahoo.fr
Wed Aug 12 23:56:58 PDT 2015


 filter/source/graphicfilter/eps/eps.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6071bab93bae55cf037d1c31c63879cab66ad0d9
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Mon Jun 1 09:27:07 2015 +0100

    tdf#91782 - fix VirtualDevice allocation crasher in eps filter.
    
    Change-Id: I59cc13cebf9a15e873cd0b7f8fccffa37a6a8f39
    Reviewed-on: https://gerrit.libreoffice.org/17688
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noelgrandin at gmail.com>

diff --git a/filter/source/graphicfilter/eps/eps.cxx b/filter/source/graphicfilter/eps/eps.cxx
index 177fa35..0921b9b 100644
--- a/filter/source/graphicfilter/eps/eps.cxx
+++ b/filter/source/graphicfilter/eps/eps.cxx
@@ -116,7 +116,7 @@ private:
     SvStream*           mpPS;
     const GDIMetaFile*  pMTF;
     GDIMetaFile*        pAMTF;              // only created if Graphics is not a Metafile
-    ScopedVclPtr<VirtualDevice> pVDev;
+    ScopedVclPtrInstance<VirtualDevice> pVDev;
 
     double              nBoundingX1;        // this represents the bounding box
     double              nBoundingY1;


More information about the Libreoffice-commits mailing list