From 777bd4829655350e4c172cb76b6689a6206732c6 Mon Sep 17 00:00:00 2001 From: answeroo <42398303+answeroo@users.noreply.github.com> Date: Mon, 20 Aug 2018 22:42:58 +0800 Subject: [PATCH] Pgm fix (#3227) * Relicensing grant by Ming Ji Permission to relicense under any OSI approved license chosen by the current ZeroMQ BDFL. --- RELICENSE/answeroo.md | 15 +++++++++++++++ src/pgm_receiver.cpp | 1 + 2 files changed, 16 insertions(+) create mode 100644 RELICENSE/answeroo.md diff --git a/RELICENSE/answeroo.md b/RELICENSE/answeroo.md new file mode 100644 index 00000000..c79c0a4b --- /dev/null +++ b/RELICENSE/answeroo.md @@ -0,0 +1,15 @@ +# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL + +This is a statement by Ming Ji +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 "answeroo", with +commit author "answeroo ", are copyright of Ming Ji. +This document hereby grants the libzmq project team to relicense libzmq, +including all past, present and future contributions of the author listed above. + +Ming Ji +2018/08/20 diff --git a/src/pgm_receiver.cpp b/src/pgm_receiver.cpp index 88105cb9..69c1852d 100644 --- a/src/pgm_receiver.cpp +++ b/src/pgm_receiver.cpp @@ -182,6 +182,7 @@ void zmq::pgm_receiver_t::in_event () while (true) { // Get new batch of data. // Note the workaround made not to break strict-aliasing rules. + insize = 0; void *tmp = NULL; ssize_t received = pgm_socket.receive (&tmp, &tsi);