From d268229191ad11f0fd2534517a89422c1bb8e02c Mon Sep 17 00:00:00 2001 From: José Bollo Date: Wed, 25 Oct 2017 10:18:25 +0200 Subject: database: Handle UNKNOWN-APP! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I850465cb233792a617ef27acf0228665e873226c Signed-off-by: José Bollo --- ll-database-binding/src/ll-database-binding.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ll-database-binding/src/ll-database-binding.c b/ll-database-binding/src/ll-database-binding.c index ae0003b..c0fa939 100644 --- a/ll-database-binding/src/ll-database-binding.c +++ b/ll-database-binding/src/ll-database-binding.c @@ -150,6 +150,10 @@ static int get_key(struct afb_req req, DBT *key) /* get the appid */ appid = afb_req_get_application_id(req); +#if 1 + if (!appid) + appid = strdup("#UNKNOWN-APP#"); +#endif if (!appid) { afb_req_fail(req, "bad-context", NULL); -- cgit 1.2.3-korg