diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-11 12:48:58 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-11 12:48:58 +0200 |
commit | af967e17050d813aaf209a4c6197775d3b92bcfb (patch) | |
tree | 78b4e25199c0f34c2f314a521f3aaa2cd3fa9502 /plugins/alsa/alsa-api-streams.c | |
parent | 2c4fb97953c0c97f5a01c592b7df6aec2c563c2b (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>
Diffstat (limited to 'plugins/alsa/alsa-api-streams.c')
-rw-r--r-- | plugins/alsa/alsa-api-streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |