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
a8e9032d
Commit
a8e9032d
authored
7 years ago
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: unreachable code in io_thread_t::process_stop
Solution: replaced by assertion
parent
92205323
master
v4.3.2
v4.3.2-win
v4.3.1
v4.3.0
v4.2.5
v4.2.4
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
io_thread.cpp
src/io_thread.cpp
+2
-3
No files found.
src/io_thread.cpp
View file @
a8e9032d
...
...
@@ -112,8 +112,7 @@ zmq::poller_t *zmq::io_thread_t::get_poller ()
void
zmq
::
io_thread_t
::
process_stop
()
{
if
(
mailbox_handle
)
{
poller
->
rm_fd
(
mailbox_handle
);
}
zmq_assert
(
mailbox_handle
);
poller
->
rm_fd
(
mailbox_handle
);
poller
->
stop
();
}
This diff is collapsed.
Click to expand it.
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