diff options
Diffstat (limited to 'audio/jack/patches/patch-ao')
-rw-r--r-- | audio/jack/patches/patch-ao | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/audio/jack/patches/patch-ao b/audio/jack/patches/patch-ao deleted file mode 100644 index 191e2864be7..00000000000 --- a/audio/jack/patches/patch-ao +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ao,v 1.2 2008/11/16 11:22:55 bjs Exp $ - -We want to make sure there's no garbage in the output buffer, otherwise -untoward stuff can happen. - ---- drivers/oss/oss_driver.c.orig 2008-11-11 17:36:43.000000000 -0500 -+++ drivers/oss/oss_driver.c -@@ -1042,6 +1042,7 @@ static void *io_thread (void *param) - pthread_mutex_lock(&driver->mutex_out); - memcpy(localbuf, driver->outdevbuf, - driver->outdevbufsize); -+ memset(driver->outdevbuf, 0x00, driver->outdevbufsize); - pthread_mutex_unlock(&driver->mutex_out); - - io_res = write(driver->outfd, localbuf, |