X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hreq.c;h=eb48a324918940bd7300be5af95fae1f111babad;hb=b70caad7da2eaea85db06dec8377b1cbebcec997;hp=6be2ee5c3c3958569efc59eb831379f31c926589;hpb=98b214e0454f1b55c5ce665bd5c848354d18c9e6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hreq.c b/src/afb-hreq.c index 6be2ee5c..eb48a324 100644 --- a/src/afb-hreq.c +++ b/src/afb-hreq.c @@ -42,7 +42,6 @@ #include "afb-hreq.h" #include "afb-hsrv.h" #include "afb-session.h" -#include "afb-cred.h" #include "afb-token.h" #include "afb-error-text.h" #include "verbose.h" @@ -345,7 +344,6 @@ static void req_destroy(struct afb_xreq *xreq) json_object_put(hreq->json); free((char*)hreq->xreq.request.called_api); free((char*)hreq->xreq.request.called_verb); - afb_cred_unref(hreq->xreq.cred); free(hreq); } @@ -1017,7 +1015,7 @@ int afb_hreq_init_context(struct afb_hreq *hreq) if (token) afb_token_get(&tok, token); - return afb_context_connect(&hreq->xreq.context, uuid, tok); + return afb_context_connect(&hreq->xreq.context, uuid, tok, NULL); } int afb_hreq_init_cookie(int port, const char *path, int maxage)