core: fix wrong assertion when disposing NMAuthManager

The list should be empty on disposal.

Fixes: 2ea2df3184
This commit is contained in:
Beniamino Galvani 2018-04-17 16:01:36 +02:00
parent 9326902cf1
commit cbeabaa000

View file

@ -672,7 +672,7 @@ dispose (GObject *object)
_LOGD ("dispose");
nm_assert (!c_list_is_empty (&priv->calls_lst_head));
nm_assert (c_list_is_empty (&priv->calls_lst_head));
priv->disposing = TRUE;