diff options
author | Giuseppe Castagno <giuseppe.castagno@acca-esse.eu> | 2016-09-25 15:57:31 +0200 |
---|---|---|
committer | Giuseppe Castagno <giuseppe.castagno@acca-esse.eu> | 2016-09-26 06:41:37 +0000 |
commit | c506954ce9a466fbc5204b3b5e2190ed907dfffe (patch) | |
tree | 2cf8f9bd4f6b06123deb37ab27045f04bcb1542b | |
parent | 833156c6a6aa3603adf69384e63f01dbe8cb1f80 (diff) |
tdf#101094 (33): Fix: use the correct exception
Change-Id: I41e7cc0a1e176e44cb1b3fb87269eb6e052c6478
Reviewed-on: https://gerrit.libreoffice.org/29273
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Giuseppe Castagno <giuseppe.castagno@acca-esse.eu>
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index c141e269a78b..e6153ffd6853 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -1642,9 +1642,9 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( if ( bError ) { - if ( !shouldAccessNetworkAfterException( e ) ) + if ( !shouldAccessNetworkAfterException( aLastException ) ) { - cancelCommandExecution( e, xEnv ); + cancelCommandExecution( aLastException, xEnv ); // unreachable } } |