Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
bea0b481
Commit
bea0b481
authored
Jul 13, 2012
by
Ian Barber
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #401 from hurtonm/master
Fix issue #397
parents
43ee4396
62b5b914
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ipc_listener.cpp
src/ipc_listener.cpp
+2
-1
No files found.
src/ipc_listener.cpp
View file @
bea0b481
...
...
@@ -171,6 +171,8 @@ int zmq::ipc_listener_t::close ()
int
rc
=
::
close
(
s
);
errno_assert
(
rc
==
0
);
s
=
retired_fd
;
// If there's an underlying UNIX domain socket, get rid of the file it
// is associated with.
if
(
has_file
&&
!
filename
.
empty
())
{
...
...
@@ -182,7 +184,6 @@ int zmq::ipc_listener_t::close ()
}
socket
->
monitor_event
(
ZMQ_EVENT_CLOSED
,
endpoint
.
c_str
(),
s
);
s
=
retired_fd
;
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment