From: José Bollo Date: Tue, 13 Feb 2018 09:26:26 +0000 (+0100) Subject: afb-stub-ws: Fix segfault on diconection X-Git-Tag: flounder_5.99.1~75 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=32644e4d8f5413220b6393577ff4790225da6133 afb-stub-ws: Fix segfault on diconection Change-Id: I7826b86e4d4cc921b2daaca5c8dda0fd27faae10 Signed-off-by: José Bollo --- diff --git a/src/afb-stub-ws.c b/src/afb-stub-ws.c index a8af53cc..036b4943 100644 --- a/src/afb-stub-ws.c +++ b/src/afb-stub-ws.c @@ -709,7 +709,8 @@ void afb_stub_ws_unref(struct afb_stub_ws *stubws) { if (!__atomic_sub_fetch(&stubws->refcount, 1, __ATOMIC_RELAXED)) { drop_all_events(stubws); - afb_evt_listener_unref(stubws->listener); + if (stubws->listener) + afb_evt_listener_unref(stubws->listener); release_sessions(stubws); afb_proto_ws_unref(stubws->proto); afb_cred_unref(stubws->cred);