1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-07 18:27:04 +03:00

network: add malloc-assertion in test

Make sure malloc() really returns non-NULL in lldp test.
This commit is contained in:
David Herrmann 2014-12-31 15:54:20 +01:00
parent 06a079055a
commit 889cec8d58

View File

@ -144,6 +144,7 @@ static int lldp_parse_port_id_tlv(tlv_packet *m) {
assert_se(tlv_packet_read_string(m, &str, &length) >= 0); assert_se(tlv_packet_read_string(m, &str, &length) >= 0);
p = malloc0(length + 1); p = malloc0(length + 1);
assert_se(p);
strncpy(p, str, length-1); strncpy(p, str, length-1);
assert_se(streq(p, TEST_LLDP_PORT) == 1); assert_se(streq(p, TEST_LLDP_PORT) == 1);
@ -182,6 +183,7 @@ static int lldp_parse_system_desc_tlv(tlv_packet *m) {
assert_se(tlv_packet_read_string(m, &str, &length) >= 0); assert_se(tlv_packet_read_string(m, &str, &length) >= 0);
p = malloc0(length + 1); p = malloc0(length + 1);
assert_se(p);
strncpy(p, str, length); strncpy(p, str, length);
assert_se(streq(p, TEST_LLDP_TYPE_SYSTEM_DESC) == 1); assert_se(streq(p, TEST_LLDP_TYPE_SYSTEM_DESC) == 1);