summaryrefslogtreecommitdiff
path: root/pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-02-20 16:07:45 -0800
committerMichael Forney <mforney@mforney.org>2020-02-20 18:00:49 -0800
commitb6b022627e6e561a90df50065c2d0143b798b3b2 (patch)
treea156173f2951df2edf4a91506ca18e761f4272c9 /pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch
parent928717b9d8aaa14be6c4a1a543b9d418f5d4d1cb (diff)
alsa-lib: Update to 1.2.2
Diffstat (limited to 'pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch')
-rw-r--r--pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch b/pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch
deleted file mode 100644
index ed2ae12c..00000000
--- a/pkg/alsa-utils/patch/0004-aplay-Avoid-pointer-arithmetic-on-void.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From c77b78a4a71d8e0950bde18e1a38f8795f4deac7 Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Tue, 2 Jul 2019 00:26:12 -0700
-Subject: [PATCH] aplay: Avoid pointer arithmetic on `void *`
-
-Signed-off-by: Michael Forney <mforney@mforney.org>
----
- aplay/aplay.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/aplay/aplay.c b/aplay/aplay.c
-index ecfc8b8..d789222 100644
---- a/aplay/aplay.c
-+++ b/aplay/aplay.c
-@@ -440,7 +440,7 @@ static ssize_t xwrite(int fd, const void *buf, size_t count)
- size_t offset = 0;
-
- while (offset < count) {
-- written = write(fd, buf + offset, count - offset);
-+ written = write(fd, (char *)buf + offset, count - offset);
- if (written <= 0)
- return written;
-
-@@ -1208,7 +1208,7 @@ static int test_au(int fd, void *buffer)
- hwparams.channels = BE_INT(ap->channels);
- if (hwparams.channels < 1 || hwparams.channels > 256)
- return -1;
-- if ((size_t)safe_read(fd, buffer + sizeof(AuHeader), BE_INT(ap->hdr_size) - sizeof(AuHeader)) != BE_INT(ap->hdr_size) - sizeof(AuHeader)) {
-+ if ((size_t)safe_read(fd, (char *)buffer + sizeof(AuHeader), BE_INT(ap->hdr_size) - sizeof(AuHeader)) != BE_INT(ap->hdr_size) - sizeof(AuHeader)) {
- error(_("read error"));
- prg_exit(EXIT_FAILURE);
- }
---
-2.22.0
-