X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-so.c;h=320834f7e23a3402605ab3e67936af03018054b5;hb=cb1745092fcc69c35f799060d050ef1ec0d1d429;hp=408c3f5a87437d271e8a2cd0afc9b83ce8a06e53;hpb=779f425daa66d2b0cd431fdc6f7f4ed976cbae15;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-so.c b/src/afb-api-so.c index 408c3f5a..320834f7 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -108,18 +108,21 @@ static void call_check(struct afb_req req, struct afb_context *context, const st } if ((stag & AFB_SESSION_CREATE) != 0) { - if (!afb_context_create(context)) { - afb_context_close(context); + if (afb_context_check_loa(context, 1)) { afb_req_fail(req, "failed", "invalid creation state"); return; } + afb_context_change_loa(context, 1); + afb_context_refresh(context); } if ((stag & (AFB_SESSION_CREATE | AFB_SESSION_RENEW)) != 0) afb_context_refresh(context); - if ((stag & AFB_SESSION_CLOSE) != 0) + if ((stag & AFB_SESSION_CLOSE) != 0) { + afb_context_change_loa(context, 0); afb_context_close(context); + } data.req = req; data.action = verb->callback;