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
28631d1c
Commit
28631d1c
authored
May 14, 2018
by
Simon Giesecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: C4550 warning in testutil_security
Solution: explicitly compare function pointer against NULL
parent
b0c3a42e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
testutil_security.hpp
tests/testutil_security.hpp
+1
-1
No files found.
tests/testutil_security.hpp
View file @
28631d1c
...
...
@@ -561,7 +561,7 @@ void setup_context_and_server_side (
rc
=
zmq_setsockopt
(
*
zap_control
,
ZMQ_LINGER
,
&
linger
,
sizeof
(
linger
));
assert
(
rc
==
0
);
if
(
zap_handler_
)
{
if
(
zap_handler_
!=
NULL
)
{
*
zap_thread
=
zmq_threadstart
(
zap_handler_
,
*
ctx
);
char
*
buf
=
s_recv
(
*
zap_control
);
...
...
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