X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api.c;h=7c4598d21af99e36a3cda14087fb2ce07a75939c;hb=9e8fda2954d951ea819dbddfe5afe466b2306074;hp=bb172d7e5ecb8f99be470fc4db45337b4e9ee779;hpb=a8e971702f23ee67e02b4716ad4159f12cefdca6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api.c b/src/afb-api.c index bb172d7e..7c4598d2 100644 --- a/src/afb-api.c +++ b/src/afb-api.c @@ -29,7 +29,7 @@ * Checks wether 'name' is a valid API name. * @return 1 if valid, 0 otherwise */ -int afb_api_is_valid_name(const char *name) +int afb_api_is_valid_name(const char *name, int hookable) { unsigned char c; @@ -44,6 +44,7 @@ int afb_api_is_valid_name(const char *name) default: if (c > ' ') break; + /*@fallthrough@*/ case '"': case '#': case '%': @@ -59,6 +60,6 @@ int afb_api_is_valid_name(const char *name) } c = (unsigned char)*++name; } while(c != 0); - return 1; + return !hookable || afb_api_is_hookable(name); }