1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-28 12:44:25 +01:00

Fixed memory leak in Packet's copy assignment operator.

This commit is contained in:
Matias Fontanini
2012-11-26 15:03:09 -03:00
parent cd6bc16d48
commit 16a29fab3e
4 changed files with 30 additions and 6 deletions

View File

@@ -71,7 +71,7 @@ void PDU::send(PacketSender &) {
}
PDU *PDU::recv_response(PacketSender &) {
return false;
return 0;
}
void PDU::inner_pdu(PDU *next_pdu) {