diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-15 10:40:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-15 10:42:55 +0000 |
commit | 3934f704a1984c95333d2760ca5d1331dce1a045 (patch) | |
tree | 7ad2033e6bf9c77e3cba36b7901f9154c33e529b /sd | |
parent | e26b5b4fb7e9146fb142422dbc3061c346935cfc (diff) |
pesky hidden leak causing pptfuzzing oom
Change-Id: I08af0f9e62ffaa6d8e0021d4e95c4e945030403a
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/ppt/pptin.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sd/source/filter/ppt/pptin.cxx b/sd/source/filter/ppt/pptin.cxx index 53fa340a81ad..2cf2a1351886 100644 --- a/sd/source/filter/ppt/pptin.cxx +++ b/sd/source/filter/ppt/pptin.cxx @@ -2783,6 +2783,8 @@ extern "C" SAL_DLLPUBLIC_EXPORT bool SAL_CALL TestImportPPT(const OUString &rURL bool bRet = ImportPPT(pDoc, *xDocStream, *xStorage, aSrcMed); + xDocShRef->DoClose(); + return bRet; } |