aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Bollo <jose.bollo@iot.bzh>2018-07-25 15:05:08 +0200
committerJose Bollo <jose.bollo@iot.bzh>2018-07-25 15:12:48 +0200
commit9cbff28c8a97e7a5dc36f6e6225a9d5e2eab8f06 (patch)
tree945bf68261b24aa36fc64a76cb8e713b1e898f2e
parent8d4e6df897f521b2e0be51933f627261388cbd20 (diff)
afb-api-v3: Simplify the code
Having a code more easy to read is better here. Change-Id: I429e82d87729e41ec53d0852daa6f146261443c9 Signed-off-by: Jose Bollo <jose.bollo@iot.bzh>
-rw-r--r--src/afb-api-v3.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/afb-api-v3.c b/src/afb-api-v3.c
index 02853b12..7f63b6eb 100644
--- a/src/afb-api-v3.c
+++ b/src/afb-api-v3.c
@@ -325,19 +325,16 @@ int afb_api_v3_del_verb(
const char *verb,
void **vcbdata)
{
- struct afb_verb_v3 **v, **e, *i;
+ struct afb_verb_v3 *v;
+ int i;
- v = api->verbs;
- e = &v[api->count];
- while (v != e) {
- i = *v++;
- if (!strcasecmp(i->verb, verb)) {
- api->count--;
+ for (i = 0 ; i < api->count ; i++) {
+ v = api->verbs[i];
+ if (!strcasecmp(verb, v->verb)) {
+ api->verbs[i] = api->verbs[--api->count];
if (vcbdata)
- *vcbdata = i->vcbdata;
- if (v != e)
- *--v = *--e;
- free(i);
+ *vcbdata = v->vcbdata;
+ free(v);
return 0;
}
}