aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/alsa/alsa-api-mixer.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/alsa/alsa-api-mixer.c')
-rw-r--r--plugins/alsa/alsa-api-mixer.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/alsa/alsa-api-mixer.c b/plugins/alsa/alsa-api-mixer.c
index c4b016c..07bcf12 100644
--- a/plugins/alsa/alsa-api-mixer.c
+++ b/plugins/alsa/alsa-api-mixer.c
@@ -641,13 +641,15 @@ OnErrorExit:
static void MixerBluezAlsaDevVerb(AFB_ReqT request) {
SoftMixerT *mixer = (SoftMixerT*) afb_req_get_vcbdata(request);
-
+ char * interface = NULL, *device = NULL, *profile = NULL;
json_object *argsJ = afb_req_json(request);
- json_object *responseJ = json_object_new_object();
+ int error;
- char * interface = NULL, *device = NULL, *profile = NULL;
+ if (!json_object_is_type(argsJ,json_type_null)) {
+ goto parsed;
+ }
- int error;
+ json_object *responseJ = json_object_new_object();
error = wrap_json_unpack(argsJ, "{ss,ss,ss !}"
, "interface", &interface
@@ -663,8 +665,8 @@ static void MixerBluezAlsaDevVerb(AFB_ReqT request) {
goto OnErrorExit;
}
- printf("%s: interface %s, device %s, profile %s\n", __func__, interface, device, profile);
-
+parsed:
+ printf("%s: interface %s, device %s, profile %s\n", __func__, interface, device, profile);
error = alsa_bluez_set_device(interface, device, profile);
if (error) {
AFB_ReqFailF(request,