1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-22 13:33:56 +03:00

resolvectl: fix type of ifindex D-Bus field, and make sure to initialize to zero in all code paths

(cherry picked from commit a5e6c8498c)
(cherry picked from commit ed26f98f2f)
This commit is contained in:
Lennart Poettering 2023-01-04 16:29:34 +01:00 committed by Luca Boccassi
parent ca948c9601
commit 87307bfdd1

View File

@ -1189,9 +1189,10 @@ static int reset_server_features(int argc, char **argv, void *userdata) {
static int read_dns_server_one(sd_bus_message *m, bool with_ifindex, bool extended, char **ret) {
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
_cleanup_free_ char *pretty = NULL;
int ifindex, family, r, k;
union in_addr_union a;
const char *name = NULL;
int32_t ifindex = 0;
int family, r, k;
uint16_t port = 0;
assert(m);