diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-06-25 10:51:46 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-06-25 10:51:46 +0200 |
commit | eabd968e79f9d24e49afca2db940eaab9ff52459 (patch) | |
tree | ee349223efd8e122aa262ae0f7770410992e1ae6 | |
parent | 758a454aa892657720ac7c779252ba9ac336ba32 (diff) | |
download | dabmux-eabd968e79f9d24e49afca2db940eaab9ff52459.tar.gz dabmux-eabd968e79f9d24e49afca2db940eaab9ff52459.tar.bz2 dabmux-eabd968e79f9d24e49afca2db940eaab9ff52459.zip |
Fix odr-zmq2edi multi-output
-rw-r--r-- | src/zmq2edi/zmq2edi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zmq2edi/zmq2edi.cpp b/src/zmq2edi/zmq2edi.cpp index a2daf49..3888d8a 100644 --- a/src/zmq2edi/zmq2edi.cpp +++ b/src/zmq2edi/zmq2edi.cpp @@ -169,7 +169,7 @@ static void add_edi_destination(void) } edi_conf.destinations.push_back(move(edi_destination)); - edi_destination.reset(); + edi_destination = std::make_shared<edi::udp_destination_t>(); source_port_set = false; source_addr_set = false; |