mirror of
https://github.com/systemd/systemd.git
synced 2024-10-31 16:21:26 +03:00
machinectl: make sure we are not reading an unitialized variable
This commit is contained in:
parent
1651e2c61e
commit
e7e9b6bb0b
@ -376,6 +376,8 @@ static int map_netif(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_
|
||||
r = sd_bus_message_read_array(m, SD_BUS_TYPE_INT32, &v, &l);
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0)
|
||||
return -EBADMSG;
|
||||
|
||||
i->n_netif = l / sizeof(int32_t);
|
||||
i->netif = memdup(v, l);
|
||||
|
Loading…
Reference in New Issue
Block a user