summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-19 19:57:12 +0200
committerMichael Stahl <mstahl@redhat.com>2013-02-20 23:10:30 +0000
commit216257e8777c5cd2fe2ef68bfa6a1a953eb923be (patch)
tree1627e336c811670ca5da2308d3166545b23c3ba2
parentaeaa4fb859e2422a4952bda022e7a40ccbd86b9f (diff)
Avoid infinite recursion
(cherry picked from commit 0d05957cf0c38abab45030ba172025e4ef318f43) Change-Id: I99d26f9601ceed98d0357d8722f8cf91cf007d29 Reviewed-on: https://gerrit.libreoffice.org/2268 Reviewed-by: Eike Rathke <erack@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--sd/source/ui/remotecontrol/BufferedStreamSocket.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx b/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx
index e2c7a4aa90d0..dcec4e3fa1f2 100644
--- a/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx
+++ b/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx
@@ -67,7 +67,7 @@ void BufferedStreamSocket::close()
mSocket = -1;
}
else
- close();
+ ::osl::StreamSocket::close();
}
sal_Int32 BufferedStreamSocket::readLine( OString& aLine )