X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-so-v2.c;h=092fd31a70b72321531e479546eef1cb4f7f9eae;hb=8a5d14c58817b7ee03f8e22ba734fdd8cc2bc780;hp=120747465d9df3cb03b5dd4c12732cf50634d537;hpb=c0562698d8e2613e488b320736255e6bbd49cb2c;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-so-v2.c b/src/afb-api-so-v2.c index 12074746..092fd31a 100644 --- a/src/afb-api-so-v2.c +++ b/src/afb-api-so-v2.c @@ -89,11 +89,7 @@ static void call_cb(void *closure, struct afb_xreq *xreq) const struct afb_verb_v2 *verb; verb = search(desc, xreq->verb); - if (!verb) - afb_xreq_fail_unknown_verb(xreq); - else - if (!xreq_session_check_apply(xreq, verb->session)) - afb_xreq_call(xreq, verb->callback); + afb_xreq_call_verb_v2(xreq, verb); } static int service_start_cb(void *closure, int share_session, int onneed, struct afb_apiset *apiset)