Module: wine
Branch: master
Commit: 0766334d04d00f1de6d601a4b052f7dfedcd9c64
URL: http://source.winehq.org/git/wine.git/?a=commit;h=0766334d04d00f1de6d601a4b…
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Fri Mar 4 10:16:15 2016 -0600
winepulse.drv: Check that the server connection actually succeeded.
When there is no PA server running, some older PulseAudio versions
have pa_mainloop_iterate fail instead of setting the connection state
to failed. So, we should also check the connection state after exiting
the loop to ensure it really succeeded before continuing.
Signed-off-by: Andrew Eikum <aeikum(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winepulse.drv/mmdevdrv.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/dlls/winepulse.drv/mmdevdrv.c b/dlls/winepulse.drv/mmdevdrv.c
index d57b822..1c38e58 100644
--- a/dlls/winepulse.drv/mmdevdrv.c
+++ b/dlls/winepulse.drv/mmdevdrv.c
@@ -573,6 +573,9 @@ static HRESULT pulse_test_connect(void)
break;
}
+ if (pa_context_get_state(pulse_ctx) != PA_CONTEXT_READY)
+ goto fail;
+
TRACE("Test-connected to server %s with protocol version: %i.\n",
pa_context_get_server(pulse_ctx),
pa_context_get_server_protocol_version(pulse_ctx));
Module: website
Branch: master
Commit: 041a4da6f88aa5b561e65fc6887572930cd20aa5
URL: http://source.winehq.org/git/website.git/?a=commit;h=041a4da6f88aa5b561e65f…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Sat Mar 5 00:48:44 2016 +0900
Wine release 1.9.5
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2016030501.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/en/2016030501.xml b/news/en/2016030501.xml
new file mode 100644
index 0000000..750ff31
--- /dev/null
+++ b/news/en/2016030501.xml
@@ -0,0 +1,16 @@
+<news>
+<date>March 5, 2016</date>
+<title>Wine 1.9.5 Released</title>
+<body>
+<p> The Wine development release 1.9.5 is now available.</p>
+<p> <a href="{$root}/announce/1.9.5">What's new</a> in this release:
+<ul>
+ <li>New version of the Mono engine, with 64-bit support.</li>
+ <li>Beginnings of the WineD3D command stream.</li>
+ <li>Support for effect states in Direct3DX.</li>
+ <li>Drag & drop improvements.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/1.9/wine-1.9.5.tar.bz2">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>