summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2000-10-11 08:27:29 +0000
committerAndreas Bregas <ab@openoffice.org>2000-10-11 08:27:29 +0000
commitfdd834ade50e9bfd16c35a6cff632d7e35747338 (patch)
tree98a2d150985545f9c27323b6f6f831bc831dfc5a /basic
parentd5297b4fb3b9f36ac04b510af07625c2919143b6 (diff)
#78760# UCBStream::SeekPos() fixed (Pos 0 is allowed now)
Diffstat (limited to 'basic')
-rw-r--r--basic/source/runtime/iosys.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx
index d6e062cf95d1..c4cc9ab7cbd4 100644
--- a/basic/source/runtime/iosys.cxx
+++ b/basic/source/runtime/iosys.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: iosys.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: ab $ $Date: 2000-09-26 09:01:36 $
+ * last change: $Author: ab $ $Date: 2000-10-11 09:27:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -930,8 +930,6 @@ ULONG UCBStream::PutData( const void* pData, ULONG nSize )
ULONG UCBStream::SeekPos( ULONG nPos )
{
- if( !nPos )
- return 0;
try
{
if( xSeek.is() )