bus: fix unitialized variable access in error path

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-05-15 23:27:59 -04:00
parent ee9b9875fd
commit 2915234da0
2 changed files with 2 additions and 2 deletions

View File

@ -1602,7 +1602,7 @@ static int add_object_vtable_internal(
sd_bus_object_find_t find,
void *userdata) {
sd_bus_slot *s;
sd_bus_slot *s = NULL;
struct node_vtable *i, *existing = NULL;
const sd_bus_vtable *v;
struct node *n;

View File

@ -2821,7 +2821,7 @@ _public_ int sd_bus_add_match(
struct bus_match_component *components = NULL;
unsigned n_components = 0;
sd_bus_slot *s;
sd_bus_slot *s = NULL;
int r = 0;
assert_return(bus, -EINVAL);