From: José Bollo Date: Mon, 11 Sep 2017 15:50:13 +0000 (+0200) Subject: afb-hreq: Fix a leak on websocket upgrade X-Git-Tag: eel/4.99.1~2 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=c65113c390a5337924729e21f74f45df8c109291;hp=ba58e7ffa5c36300d09165253c58f25add228273;p=src%2Fapp-framework-binder.git afb-hreq: Fix a leak on websocket upgrade A 'no-reply' answer was created but not emitted nor freed when http connection was upgraded to websocket. Merging replied and xreq.replied was a possible solution but I wanted not change much things. Change-Id: I86c6c7ee52f69d50732e50fa6594f1d22d77ddfd Signed-off-by: José Bollo --- diff --git a/src/afb-hreq.c b/src/afb-hreq.c index 9c630912..dc02e6fe 100644 --- a/src/afb-hreq.c +++ b/src/afb-hreq.c @@ -330,6 +330,8 @@ void afb_hreq_addref(struct afb_hreq *hreq) void afb_hreq_unref(struct afb_hreq *hreq) { + if (hreq->replied) + hreq->xreq.replied = 1; afb_xreq_unref(&hreq->xreq); }