mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
networkctl: avoid leak if a field was specified twice
The input data would have to be borked, so this is unlikely to happen, but since we have a nice helper function to do it properly... why not? CID #1261390.
This commit is contained in:
@@ -965,14 +965,14 @@ static int link_lldp_status(int argc, char *argv[], void *userdata) {
|
||||
continue;
|
||||
|
||||
if (streq(a, "_Chassis")) {
|
||||
chassis = strdup(b);
|
||||
if (!chassis)
|
||||
return -ENOMEM;
|
||||
r = free_and_strdup(&chassis, b);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
} else if (streq(a, "_Port")) {
|
||||
port = strdup(b);
|
||||
if (!port)
|
||||
return -ENOMEM;
|
||||
r = free_and_strdup(&port, b);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
} else if (streq(a, "_TTL")) {
|
||||
long long unsigned x;
|
||||
|
||||
Reference in New Issue
Block a user