diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-11-29 19:23:33 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:54 +0100 |
commit | 5ef376e8f664888a9ba05edaf603918ba0653484 (patch) | |
tree | 3a4abbfe88a0127fa1f53fa4e455054f515af65f | |
parent | 4bf3794c7f58a88cc071e46d1d6a283ffcb162d9 (diff) |
wrong json unpacking fails.
Change-Id: Ie0246192b014c3550207fab1fb6512aeb6e5bce1
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | ctl-lib/ctl-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-plugin.c b/ctl-lib/ctl-plugin.c index 557f85e..6ec1ace 100644 --- a/ctl-lib/ctl-plugin.c +++ b/ctl-lib/ctl-plugin.c @@ -36,7 +36,7 @@ PUBLIC int PluginGetCB (AFB_ApiT apiHandle, CtlActionT *action , json_object *ca goto OnErrorExit; } - int err = wrap_json_unpack(callbackJ, "{ss,ss,s?s,s?o!}", + int err = wrap_json_unpack(callbackJ, "{ss,ss,s?o!}", "plugin", &plugin, "function", &function, "args", &argsJ); |