Hi, On Tue, Mar 31, 2009, Gustavo F. Padovan wrote: > If name or data->name is null we have a null dereference. Not name and > data->name. > --- > gdbus/watch.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/gdbus/watch.c b/gdbus/watch.c > index 38bf3d7..607803c 100644 > --- a/gdbus/watch.c > +++ b/gdbus/watch.c > @@ -62,7 +62,7 @@ static struct name_data *name_data_find(DBusConnection *connection, > current != NULL; current = current->next) { > struct name_data *data = current->data; > > - if (name == NULL && data->name == NULL) { > + if (name == NULL || data->name == NULL) { > if (connection == data->connection) > return data; > } else { Pushed upstream. Marcel, you'll probably want to merge the patch with the other gdbus-using projects too. Johan -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html