diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2000-12-08 07:48:20 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2000-12-08 07:48:20 +0000 |
commit | 6e1dc6b829cafe4e07c0c7e4c83401b3881e3e14 (patch) | |
tree | 76d14556365f3c44922344b176432623075231fc /io | |
parent | f5f0fdfaef6827544a9a29a2b69b738c109100a6 (diff) |
#81246# stopAccepting is now threadsafe
Diffstat (limited to 'io')
-rw-r--r-- | io/source/acceptor/acceptor.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx index 8ae8a7226031..21443b417e60 100644 --- a/io/source/acceptor/acceptor.cxx +++ b/io/source/acceptor/acceptor.cxx @@ -2,9 +2,9 @@ * * $RCSfile: acceptor.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jbu $ $Date: 2000-11-28 08:23:24 $ + * last change: $Author: jbu $ $Date: 2000-12-08 08:48:20 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -355,7 +355,7 @@ namespace io_acceptor { m_pSocket->stopAccepting(); } - else + else if( _xAcceptor.is() ) { _xAcceptor->stopAccepting(); } |