Module: wine
Branch: master
Commit: 509d0f06cece4668a04f35f0ca6e924947673c31
URL: http://source.winehq.org/git/wine.git/?a=commit;h=509d0f06cece4668a04f35f0c…
Author: Gerald Pfeifer <gerald(a)pfeifer.com>
Date: Fri Sep 4 16:07:31 2015 +0200
server: Replace 1 << 31 by 1u << 31 to avoid shift overflow in in get_active_hooks.
---
server/hook.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/server/hook.c b/server/hook.c
index 3abd8d9..a8e6ab9 100644
--- a/server/hook.c
+++ b/server/hook.c
@@ -356,7 +356,7 @@ unsigned int get_active_hooks(void)
{
struct hook_table *table = get_queue_hooks( current );
struct hook_table *global_hooks = get_global_hooks( current );
- unsigned int ret = 1 << 31; /* set high bit to indicate that the bitmap is valid */
+ unsigned int ret = 1u << 31; /* set high bit to indicate that the bitmap is valid */
int id;
for (id = WH_MINHOOK; id <= WH_WINEVENT; id++)
Module: website
Branch: master
Commit: adc93baca06c1a47d6a32ef1896fa39442d0ba85
URL: http://source.winehq.org/git/website.git/?a=commit;h=adc93baca06c1a47d6a32e…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Sep 4 21:03:52 2015 +0900
Wine release 1.7.51
---
news/en/2015090401.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/en/2015090401.xml b/news/en/2015090401.xml
new file mode 100644
index 0000000..10420c4
--- /dev/null
+++ b/news/en/2015090401.xml
@@ -0,0 +1,16 @@
+<news>
+<date>September 4, 2015</date>
+<title>Wine 1.7.51 Released</title>
+<body>
+<p> The Wine development release 1.7.51 is now available.</p>
+<p> <a href="{$root}/announce/1.7.51">What's new</a> in this release:
+<ul>
+ <li>XAudio2 implementation using OpenAL Soft.</li>
+ <li>Support for the new Universal C Runtime DLL.</li>
+ <li>Dropdown menu support in the standard Open Dialog.</li>
+ <li>Grayscale rendering mode in DirectWrite.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="http://prdownloads.sourceforge.net/wine/wine-1.7.51.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>