summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-19 19:57:12 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-19 19:57:26 +0200
commit0d05957cf0c38abab45030ba172025e4ef318f43 (patch)
tree4fd58d3df34ac4ed5f3500481a0c81355c90976a /sd
parentf49b4581a0a5056a51712bcabcc66483a87a07c8 (diff)
Avoid infinite recursion
Change-Id: I99d26f9601ceed98d0357d8722f8cf91cf007d29
Diffstat (limited to 'sd')
-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 0defa3cba7bd..c1e02875a6f9 100644
--- a/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx
+++ b/sd/source/ui/remotecontrol/BufferedStreamSocket.cxx
@@ -71,7 +71,7 @@ void BufferedStreamSocket::close()
mSocket = -1;
}
else
- close();
+ ::osl::StreamSocket::close();
}
sal_Int32 BufferedStreamSocket::readLine( OString& aLine )