summaryrefslogtreecommitdiff
path: root/src/libsystemd-network/sd-lldp.c
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2015-06-21 20:27:04 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2015-10-02 17:11:40 +0200
commit2212d76d08f3bc34c683aed1a6736325b841625c (patch)
tree15d61c2c8ad6f0eb807df35c7ee182dd859ee575 /src/libsystemd-network/sd-lldp.c
parent3c2f5a543de9cc3d958920b3bd18dc8657dc201f (diff)
lldp: add reference counter to struct tlv_packet
Add a reference counter to the tlv_packet structure so that it can be shared between multiple users and properly free'd when no longer in use.
Diffstat (limited to 'src/libsystemd-network/sd-lldp.c')
-rw-r--r--src/libsystemd-network/sd-lldp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsystemd-network/sd-lldp.c b/src/libsystemd-network/sd-lldp.c
index 17512884f5..53cd19a750 100644
--- a/src/libsystemd-network/sd-lldp.c
+++ b/src/libsystemd-network/sd-lldp.c
@@ -338,7 +338,7 @@ int lldp_handle_packet(tlv_packet *tlv, uint16_t length) {
lldp->statistics.stats_frames_in_errors_total ++;
}
- tlv_packet_free(tlv);
+ tlv_packet_unref(tlv);
return 0;
}