summaryrefslogtreecommitdiff
path: root/extra/alsa-utils/arecord-1.0.27.patch
blob: f9edb2d21363b588402414a88ddfcb3bd36ec09c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
--- a/aplay/aplay.c
+++ b/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
 		 */