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
f60d891b
Commit
f60d891b
authored
May 06, 2010
by
Martin Sustrik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue 23. zmq_init() crashes on illegal numbers
parent
64c58662
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
zmq.cpp
src/zmq.cpp
+4
-1
No files found.
src/zmq.cpp
View file @
f60d891b
...
...
@@ -230,7 +230,10 @@ size_t zmq_msg_size (zmq_msg_t *msg_)
// Reflect this in the API/ABI.
void
*
zmq_init
(
int
/*app_threads_*/
,
int
io_threads_
,
int
/*flags_*/
)
{
// There are no context flags defined at the moment, so flags_ is ignored.
if
(
io_threads_
<
0
)
{
errno
=
EINVAL
;
return
NULL
;
}
#if defined ZMQ_HAVE_OPENPGM
// Unfortunately, OpenPGM doesn't support refcounted init/shutdown, thus,
...
...
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