From 9e832165ce99f5081dc6c1c6495a3d34bb46f46a Mon Sep 17 00:00:00 2001 From: gerald Date: Wed, 30 Oct 2002 17:56:30 +0000 Subject: Add a patch from the upstream sources to improve this port until the next Wine snapshot. Submitted by: Ulrich 'Q' Spoerlein Approved by: obrien (mentor) --- emulators/wine-devel/files/patch-upstream | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 emulators/wine-devel/files/patch-upstream (limited to 'emulators/wine-devel') diff --git a/emulators/wine-devel/files/patch-upstream b/emulators/wine-devel/files/patch-upstream new file mode 100644 index 000000000000..dd8268d4b877 --- /dev/null +++ b/emulators/wine-devel/files/patch-upstream @@ -0,0 +1,20 @@ +--- dlls/winmm/wineoss/audio.c:1.62 Wed Oct 30 08:38:42 2002 ++++ dlls/winmm/wineoss/audio.c Wed Oct 30 08:38:42 2002 +@@ -245,7 +245,7 @@ + if ((fd = open(ossdev->dev_name, ossdev->open_access|O_NDELAY, 0)) == -1) + { + WARN("Couldn't open out %s (%s)\n", ossdev->dev_name, strerror(errno)); +- return (errno == EBUSY) ? MMSYSERR_ALLOCATED : MMSYSERR_ERROR; ++ return -1; + } + fcntl(fd, F_SETFD, 1); /* set close on exec flag */ + /* turn full duplex on if it has been requested */ +@@ -373,7 +373,7 @@ + } + TRACE("Changing fd from %d to ", ossdev->fd); + close(ossdev->fd); +- OSS_RawOpenDevice(ossdev, &ossdev->audio_fragment); ++ ossdev->fd = OSS_RawOpenDevice(ossdev, &ossdev->audio_fragment); + TRACE("%d\n", ossdev->fd); + return ossdev->fd; + } -- cgit