25 lines
700 B
Diff
25 lines
700 B
Diff
|
From: Jaroslav Kysela <perex@perex.cz>
|
||
|
Date: Wed, 17 Apr 2013 06:34:34 +0000 (+0200)
|
||
|
Subject: arecord: add a missing break to the capture loop
|
||
|
X-Git-Url: http://git.alsa-project.org/?p=alsa-utils.git;a=commitdiff_plain;h=b4f34ac26037c10ac51c4bb29203500165848977
|
||
|
|
||
|
arecord: add a missing break to the capture loop
|
||
|
|
||
|
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
|
||
|
---
|
||
|
|
||
|
diff --git a/aplay/aplay.c b/aplay/aplay.c
|
||
|
index 5bdc39c..000d25b 100644
|
||
|
--- aplay/aplay.c
|
||
|
+++ aplay/aplay.c
|
||
|
@@ -3021,6 +3021,9 @@ static void capture(char *orig_name)
|
||
|
fd = -1;
|
||
|
}
|
||
|
|
||
|
+ if (in_aborting)
|
||
|
+ break;
|
||
|
+
|
||
|
/* repeat the loop when format is raw without timelimit or
|
||
|
* requested counts of data are recorded
|
||
|
*/
|