aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-06-11 12:48:58 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-06-11 12:48:58 +0200
commitaf967e17050d813aaf209a4c6197775d3b92bcfb (patch)
tree78b4e25199c0f34c2f314a521f3aaa2cd3fa9502
parent2c4fb97953c0c97f5a01c592b7df6aec2c563c2b (diff)
Remove yocto compilation errors
Remove yocto compilation errors concerning : - An unitialized variable in 'alsa-api-pcm.c' - A wrong use of asprintf in 'alsa-api-streams.c' Change-Id: I170993d060a7a1d1a1c20979da0645c5ef2b1b91 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r--plugins/alsa/alsa-api-pcm.c2
-rw-r--r--plugins/alsa/alsa-api-streams.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/alsa/alsa-api-pcm.c b/plugins/alsa/alsa-api-pcm.c
index 6560271..084b54b 100644
--- a/plugins/alsa/alsa-api-pcm.c
+++ b/plugins/alsa/alsa-api-pcm.c
@@ -152,7 +152,7 @@ OnErrorExit:
STATIC int PcmSetControl(SoftMixerT *mixer, AlsaSndCtlT *sndcard, AlsaSndControlT *control, volumeT volType, int *newvol, int *oldval) {
snd_ctl_elem_id_t* elemId = NULL;
snd_ctl_elem_info_t *elemInfo;
- int error, value;
+ int error, value = 0;
long curval;
assert(control->numid);
diff --git a/plugins/alsa/alsa-api-streams.c b/plugins/alsa/alsa-api-streams.c
index c8702ed..e11affe 100644
--- a/plugins/alsa/alsa-api-streams.c
+++ b/plugins/alsa/alsa-api-streams.c
@@ -401,7 +401,7 @@ STATIC AlsaStreamAudioT * AttachOneStream(SoftMixerT *mixer, const char *uid, co
if (stream->verb) asprintf((char**) &stream->verb, "%s:%s", prefix, stream->verb);
else asprintf((char**) &stream->verb, "%s:%s", prefix, stream->uid);
} else {
- if (!stream->verb) asprintf((char**) &stream->verb, stream->uid);
+ if (!stream->verb) stream->verb = strdup(stream->uid);
}
// implement stream PCM with corresponding thread and controls