From 4bbad5bf527c8310c1f076a5cdf512d4385f8b76 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Fri, 27 Jul 2018 14:40:19 +0200 Subject: [PATCH] afb-export: Set API context as validated MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit An API is always valid internally to the binder. Change-Id: I3c8eed166c9cfc1bcc47daa30c8f327af777d136 Signed-off-by: José Bollo --- src/afb-export.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.16.6