From: José Bollo Date: Fri, 27 Jul 2018 12:40:19 +0000 (+0200) Subject: afb-export: Set API context as validated X-Git-Tag: 5.99.3~10 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=4bbad5bf527c8310c1f076a5cdf512d4385f8b76 afb-export: Set API context as validated An API is always valid internally to the binder. Change-Id: I3c8eed166c9cfc1bcc47daa30c8f327af777d136 Signed-off-by: José Bollo --- diff --git a/src/afb-export.c b/src/afb-export.c index 811ecb5e..e9d5d9ad 100644 --- a/src/afb-export.c +++ b/src/afb-export.c @@ -1766,5 +1766,6 @@ void afb_export_process_xreq(struct afb_export *export, struct afb_xreq *xreq) void afb_export_context_init(struct afb_export *export, struct afb_context *context) { afb_context_init(context, export->session, NULL); + context->validated = 1; }