From da99dde7401fce0d9a844ea7881ce7b1208547e0 Mon Sep 17 00:00:00 2001 From: Alexander Wenzel Date: Wed, 27 Jun 2012 15:21:27 +0200 Subject: Do not register appliction again, if already registered. Signed-off-by: Alexander Wenzel --- src/lib/dlt_user.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src') diff --git a/src/lib/dlt_user.c b/src/lib/dlt_user.c index 7135e39..958c9eb 100755 --- a/src/lib/dlt_user.c +++ b/src/lib/dlt_user.c @@ -455,6 +455,35 @@ int dlt_register_app(const char *appid, const char * description) return -1; } + /* check if application already registered */ + /* if yes do not register again */ + if(appid[1]==0) + { + if(appid[0]==dlt_user.appID[0]) + return 0; + } + else if(appid[2]==0) + { + if(appid[0]==dlt_user.appID[0] && + appid[1]==dlt_user.appID[1]) + return 0; + } + else if(appid[3]==0) + { + if(appid[0]==dlt_user.appID[0] && + appid[1]==dlt_user.appID[1] && + appid[2]==dlt_user.appID[2]) + return 0; + } + else + { + if(appid[0]==dlt_user.appID[0] && + appid[1]==dlt_user.appID[1] && + appid[2]==dlt_user.appID[2] && + appid[3]==dlt_user.appID[3]) + return 0; + } + DLT_SEM_LOCK(); /* Store locally application id and application description */ -- cgit v1.2.1