diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-21 13:14:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-22 10:17:52 +0100 |
commit | f921ca3cc59825745b1eac52499d72ef8bfa1db5 (patch) | |
tree | 9b77753ca2dd6d83b613ae0fb7c800fc7c110cb6 /xmlhelp | |
parent | 0f93062d431d3b110a13e84b0ae65401de377d73 (diff) |
check return of osl_setFilePos
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/inputstream.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/inputstream.cxx b/xmlhelp/source/cxxhelp/provider/inputstream.cxx index 0649c6d9e5c2..f5736b138a04 100644 --- a/xmlhelp/source/cxxhelp/provider/inputstream.cxx +++ b/xmlhelp/source/cxxhelp/provider/inputstream.cxx @@ -137,7 +137,11 @@ XInputStream_impl::skipBytes( io::IOException, uno::RuntimeException) { - m_aFile.setPos( osl_Pos_Current, sal_uInt64( nBytesToSkip ) ); + if (m_aFile.setPos(osl_Pos_Current, sal_uInt64(nBytesToSkip)) != osl::FileBase::E_None) + { + throw io::IOException(::rtl::OUString( + RTL_CONSTASCII_USTRINGPARAM("XInputStream_impl::skipBytes failed seek")), uno::Reference< uno::XInterface >()); + } } |