From 2386a422c14195666215d78214446217be34640d Mon Sep 17 00:00:00 2001 From: Taylor Holberton Date: Fri, 18 Nov 2016 20:38:40 -0800 Subject: initializing 'result' from transfer struct --- src/pcm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pcm.c b/src/pcm.c index bb907b6..b4b4be1 100644 --- a/src/pcm.c +++ b/src/pcm.c @@ -495,7 +495,7 @@ int pcm_write(struct pcm *pcm, const void *data, unsigned int count) x.buf = (void*)data; x.frames = count / (pcm->config.channels * pcm_format_to_bits(pcm->config.format) / 8); - + x.result = 0; for (;;) { if (!pcm->running) { int prepare_error = pcm_prepare(pcm); @@ -544,7 +544,7 @@ int pcm_read(struct pcm *pcm, void *data, unsigned int count) x.buf = data; x.frames = count / (pcm->config.channels * pcm_format_to_bits(pcm->config.format) / 8); - + x.result = 0; for (;;) { if (!pcm->running) { if (pcm_start(pcm) < 0) { -- cgit v1.2.3