sdext/source/pdfimport/pdfparse/pdfparse.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e78a6c4231cfb33643b45442b786e1e31b2781a8 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Aug 23 13:12:22 2018 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Aug 23 15:57:35 2018 +0200 leak on import of moz279355-2.pdf since... commit e4e39a48fd6da85189af278d194e06e42189690d Date: Thu Aug 16 12:38:52 2018 +0200 loplugin:useuniqueptr in PDFGrammar Change-Id: If233f3be5beb2c14399f229972441e912385a2b7 Reviewed-on: https://gerrit.libreoffice.org/59500 Reviewed-by: Noel Grandin <[email protected]> Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/sdext/source/pdfimport/pdfparse/pdfparse.cxx b/sdext/source/pdfimport/pdfparse/pdfparse.cxx index c46ff60b373c..9e2eb4870a92 100644 --- a/sdext/source/pdfimport/pdfparse/pdfparse.cxx +++ b/sdext/source/pdfimport/pdfparse/pdfparse.cxx @@ -337,7 +337,7 @@ public: if( pObj ) { if( pObj->m_pObject == nullptr ) - pObj->m_pObject = pNewValue.release(); + pObj->m_pObject = pNewValue.get(); else { pMsg = "second value for object"; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
