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
69e451c1
Unverified
Commit
69e451c1
authored
Jul 24, 2019
by
Luca Boccassi
Committed by
GitHub
Jul 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3594 from mancasg/master
Problem: stream_engine use after free
parents
60cca513
1bbbd77a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
mancasg.md
RELICENSE/mancasg.md
+15
-0
stream_engine_base.cpp
src/stream_engine_base.cpp
+1
-1
No files found.
RELICENSE/mancasg.md
0 → 100644
View file @
69e451c1
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
This is a statement by Mancaș George
that grants permission to relicense its copyrights in the libzmq C++
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
Open Source Initiative approved license chosen by the current ZeroMQ
BDFL (Benevolent Dictator for Life).
A portion of the commits made by the Github handle "mancasg", with
commit author "Mancaș George
<mancas.f.george@gmail.com>
", are copyright of Mancaș George .
This document hereby grants the libzmq project team to relicense libzmq,
including all past, present and future contributions of the author listed above.
Mancaș George
2019/07/24
src/stream_engine_base.cpp
View file @
69e451c1
...
...
@@ -522,7 +522,7 @@ const zmq::endpoint_uri_pair_t &zmq::stream_engine_base_t::get_endpoint () const
void
zmq
::
stream_engine_base_t
::
mechanism_ready
()
{
if
(
_options
.
heartbeat_interval
>
0
)
{
if
(
_options
.
heartbeat_interval
>
0
&&
!
_has_heartbeat_timer
)
{
add_timer
(
_options
.
heartbeat_interval
,
heartbeat_ivl_timer_id
);
_has_heartbeat_timer
=
true
;
}
...
...
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