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
b79aaaf4
Commit
b79aaaf4
authored
Jun 03, 2012
by
Ian Barber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove extra brackets as suggested by Martin H, and fix up a comment which was missing a word
parent
f687a298
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
session_base.cpp
src/session_base.cpp
+2
-3
No files found.
src/session_base.cpp
View file @
b79aaaf4
...
...
@@ -239,9 +239,8 @@ void zmq::session_base_t::terminated (pipe_t *pipe_)
{
// If we get a term signal from our held outpipe
// we can safely ignore it.
if
(
pipe_
==
outpipe
)
{
if
(
pipe_
==
outpipe
)
return
;
}
// Drop the reference to the deallocated pipe.
zmq_assert
(
pipe
==
pipe_
);
...
...
@@ -379,7 +378,7 @@ void zmq::session_base_t::process_term (int linger_)
// are processed in case the linger time is non-zero.
pipe
->
terminate
(
linger_
!=
0
);
// If we're storing to a to be connected, we can clear that as well
// If we're storing to a
pipe
to be connected, we can clear that as well
if
(
outpipe
)
{
outpipe
->
set_event_sink
(
this
);
outpipe
->
terminate
(
linger_
!=
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