[alsa-devel] [PATCH] Fix bug in arecord --max-file-time where the file size could overflow 32 bits
Gilliland, Scott M
scott.gilliland at gatech.edu
Fri Jun 23 20:35:03 CEST 2017
From: Scott Gilliland <scott.gilliland at gatech.edu>
Fix bug in arecord --max-file-time where the file size could overflow 32 bits
Signed-off-by: Scott Gilliland <scott.gilliland at gatech.edu>
---
aplay/aplay.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/aplay/aplay.c b/aplay/aplay.c
index f793c82..00af662 100644
--- a/aplay/aplay.c
+++ b/aplay/aplay.c
@@ -3027,7 +3027,7 @@ static void capture(char *orig_name)
if (count == 0)
count = LLONG_MAX;
/* compute the number of bytes per file */
- max_file_size = max_file_time *
+ max_file_size = (long long) max_file_time *
snd_pcm_format_size(hwparams.format,
hwparams.rate * hwparams.channels);
/* WAVE-file should be even (I'm not sure), but wasting one byte
--
2.11.0
More information about the Alsa-devel
mailing list