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
4c93fc25
Commit
4c93fc25
authored
Mar 26, 2012
by
Ian Barber
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #291 from rcxdude/bugfix
Fix for issue #307
parents
64732aec
084e1c21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
dist.cpp
src/dist.cpp
+5
-2
No files found.
src/dist.cpp
View file @
4c93fc25
...
...
@@ -139,7 +139,8 @@ void zmq::dist_t::distribute (msg_t *msg_, int flags_)
if
(
msg_
->
is_vsm
())
{
for
(
pipes_t
::
size_type
i
=
0
;
i
<
matching
;
++
i
)
write
(
pipes
[
i
],
msg_
);
if
(
!
write
(
pipes
[
i
],
msg_
))
--
i
;
// Retry last write because index will have been swapped
int
rc
=
msg_
->
close
();
errno_assert
(
rc
==
0
);
rc
=
msg_
->
init
();
...
...
@@ -154,8 +155,10 @@ void zmq::dist_t::distribute (msg_t *msg_, int flags_)
// Push copy of the message to each matching pipe.
int
failed
=
0
;
for
(
pipes_t
::
size_type
i
=
0
;
i
<
matching
;
++
i
)
if
(
!
write
(
pipes
[
i
],
msg_
))
if
(
!
write
(
pipes
[
i
],
msg_
))
{
++
failed
;
--
i
;
// Retry last write because index will have been swapped
}
if
(
unlikely
(
failed
))
msg_
->
rm_refs
(
failed
);
...
...
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