summaryrefslogtreecommitdiff
path: root/node/OutboundMulticast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/OutboundMulticast.cpp')
-rw-r--r--node/OutboundMulticast.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/OutboundMulticast.cpp b/node/OutboundMulticast.cpp
index dc513e84..5b5b726b 100644
--- a/node/OutboundMulticast.cpp
+++ b/node/OutboundMulticast.cpp
@@ -91,8 +91,8 @@ void OutboundMulticast::sendOnly(const RuntimeEnvironment *RR,void *tPtr,const A
_packet.setDestination(toAddr2);
RR->node->expectReplyTo(_packet.packetId());
- Packet tmp(_packet); // make a copy of packet so as not to garble the original -- GitHub issue #461
- RR->sw->send(tPtr,tmp,true);
+ _tmp = _packet;
+ RR->sw->send(tPtr,_tmp,true);
}
}