From: Alex Henrie Date: Sat, 26 Dec 2020 21:35:44 +0000 (-0700) Subject: pcm: remove dead assignments from snd_pcm_rate_(commit_area|grab_next_period) X-Git-Tag: v1.2.5~143 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=2e470d59d84a563a9efa81572ddc48d9858ceb92;p=alsa-lib.git pcm: remove dead assignments from snd_pcm_rate_(commit_area|grab_next_period) Signed-off-by: Alex Henrie Signed-off-by: Takashi Iwai --- diff --git a/src/pcm/pcm_rate.c b/src/pcm/pcm_rate.c index 5bf7dbb9..dc38e95e 100644 --- a/src/pcm/pcm_rate.c +++ b/src/pcm/pcm_rate.c @@ -746,7 +746,6 @@ static int snd_pcm_rate_commit_area(snd_pcm_t *pcm, snd_pcm_rate_t *rate, if (result < 0) return result; __partial: - xfer = 0; cont = slave_frames; if (cont > slave_size) cont = slave_size; @@ -846,7 +845,6 @@ static int snd_pcm_rate_grab_next_period(snd_pcm_t *pcm, snd_pcm_uframes_t hw_of if (result < 0) return result; __partial: - xfer = 0; cont = slave_frames; if (cont > rate->gen.slave->period_size) cont = rate->gen.slave->period_size;