diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 11:59:41 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-17 15:19:47 +0100 |
commit | 79943fac0d49f4deecb1f61ae2e8301ce75173b6 (patch) | |
tree | 0ae48405fa5d8ec0d9666cbafbe021358f346878 /package | |
parent | 0c0c77af0625dd2bf94bd837e8989ed092c3725b (diff) |
coverity#706591 Uncaught exception
Change-Id: I9b705664c3814aea5c433526ad147a8ab11c2d0f
Diffstat (limited to 'package')
-rw-r--r-- | package/inc/zipfileaccess.hxx | 3 | ||||
-rw-r--r-- | package/source/zippackage/zipfileaccess.cxx | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/package/inc/zipfileaccess.hxx b/package/inc/zipfileaccess.hxx index af3258e88839..6d3b2d9a45c2 100644 --- a/package/inc/zipfileaccess.hxx +++ b/package/inc/zipfileaccess.hxx @@ -21,6 +21,7 @@ #define INCLUDED_PACKAGE_INC_ZIPFILEACCESS_HXX #include <com/sun/star/packages/zip/XZipFileAccess2.hpp> +#include <com/sun/star/packages/zip/ZipException.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XComponent.hpp> #include <com/sun/star/lang/XMultiServiceFactory.hpp> @@ -81,7 +82,7 @@ public: virtual sal_Bool SAL_CALL hasElements( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XZipFileAccess - virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getStreamByPattern( const OUString& aPattern ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > SAL_CALL getStreamByPattern( const OUString& aPattern ) throw (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::uno::RuntimeException, css::packages::zip::ZipException, std::exception) SAL_OVERRIDE; // XComponent virtual void SAL_CALL dispose( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/package/source/zippackage/zipfileaccess.cxx b/package/source/zippackage/zipfileaccess.cxx index c070d83d22b6..0efa97d6ea29 100644 --- a/package/source/zippackage/zipfileaccess.cxx +++ b/package/source/zippackage/zipfileaccess.cxx @@ -358,7 +358,7 @@ sal_Bool SAL_CALL OZipFileAccess::hasElements() // XZipFileAccess uno::Reference< io::XInputStream > SAL_CALL OZipFileAccess::getStreamByPattern( const OUString& aPatternString ) throw ( container::NoSuchElementException, - io::IOException, + io::IOException, packages::zip::ZipException, uno::RuntimeException, std::exception ) { ::osl::MutexGuard aGuard( m_aMutexHolder->GetMutex() ); |