summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/gvfs
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-25 12:09:02 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-25 12:09:02 +0000
commit4fafaccb19ddef410bb3127fe960ab5b08daaad6 (patch)
tree03d4e175df7514772cd82ed77174c1b15007c997 /ucb/source/ucp/gvfs
parent8b6e1e93eff90de793d35a19af6aed09344cbe4f (diff)
INTEGRATION: CWS mhu16 (1.5.36); FILE MERGED
2007/04/02 10:57:05 mhu 1.5.36.1: #i74352: Fix infinite recursion in Stream::readSomeBytes().
Diffstat (limited to 'ucb/source/ucp/gvfs')
-rw-r--r--ucb/source/ucp/gvfs/stream.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/gvfs/stream.cxx b/ucb/source/ucp/gvfs/stream.cxx
index 9464f5667c0d..c41d29d16646 100644
--- a/ucb/source/ucp/gvfs/stream.cxx
+++ b/ucb/source/ucp/gvfs/stream.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: stream.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 13:54:55 $
+ * last change: $Author: vg $ $Date: 2007-05-25 13:09:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -165,7 +165,7 @@ sal_Int32 SAL_CALL Stream::readSomeBytes(
{
// Again - having 2 methods here just sucks; cf. filinpstr.cxx
// This can never be an effective non-blocking API - so why bother ?
- return readSomeBytes( aData, nMaxBytesToRead );
+ return readBytes( aData, nMaxBytesToRead );
}
void SAL_CALL Stream::skipBytes( sal_Int32 nBytesToSkip )