Module: website
Branch: master
Commit: 64c506f14d59cf9aa78030e22846266db9c73b1f
URL: https://gitlab.winehq.org/winehq/winehq/-/commit/64c506f14d59cf9aa78030e228…
Author: Jeremy Newman <jnewman(a)codeweavers.com>
Date: Wed Oct 12 09:43:18 2022 -0500
take down wineconf post
---
templates/en/home.template | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/templates/en/home.template b/templates/en/home.template
index 255a8fd0..aead4387 100644
--- a/templates/en/home.template
+++ b/templates/en/home.template
@@ -169,14 +169,7 @@
<div class="whq-page-container margin-top-md">
- <h2 class="title"><a href="https://indico.freedesktop.org/event/2/page/11-overview">WineConf 2022</a></h2>
-
- <p>Come join us at the annual Wine developers conference being held in Minneapolis, MN on October 5th and 6th.<br>
- This year, we are holding the conference in conjunction with <a href="https://www.x.org/">Xorg</a> and <a href="https://fossxr.dev/">FOSSXR</a>, so it should be an especially good time.</p>
-
- <p class="margin-bottom-md"><a href="https://indico.freedesktop.org/event/2/page/11-overview" class="btn btn-default"><i class="fa fa-info-circle"></i> Read More</a></p>
-
- <h2 class="title margin-top-md"><a href="{$root}/news">News and Updates</a></h2>
+ <h2 class="title"><a href="{$root}/news">News and Updates</a></h2>
<!--EXEC:[news?n=3]-->
Module: wine
Branch: master
Commit: 46f307073eab42c7aa953f10892bdd1f041f420b
URL: https://gitlab.winehq.org/wine/wine/-/commit/46f307073eab42c7aa953f10892bdd…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Oct 11 18:40:37 2022 +0200
ngen: Add version resource.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53773
---
programs/ngen/Makefile.in | 5 +++--
programs/ngen/version.rc | 27 +++++++++++++++++++++++++++
2 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/programs/ngen/Makefile.in b/programs/ngen/Makefile.in
index ec3253c4627..0edb046831e 100644
--- a/programs/ngen/Makefile.in
+++ b/programs/ngen/Makefile.in
@@ -2,5 +2,6 @@ MODULE = ngen.exe
EXTRADLLFLAGS = -mconsole -municode
-C_SRCS = \
- ngen_main.c
+SOURCES = \
+ ngen_main.c \
+ version.rc
diff --git a/programs/ngen/version.rc b/programs/ngen/version.rc
new file mode 100644
index 00000000000..a3b004c6eb9
--- /dev/null
+++ b/programs/ngen/version.rc
@@ -0,0 +1,27 @@
+/*
+ * Copyright (c) 2022 Alexandre Julliard
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Wine ngen"
+#define WINE_FILENAME_STR "ngen.exe"
+#define WINE_FILETYPE VFT_APP
+#define WINE_FILEVERSION 2,0,50727,1433
+#define WINE_FILEVERSION_STR "2.0.50727.1433"
+#define WINE_PRODUCTVERSION 2,0,50727,1433
+#define WINE_PRODUCTVERSION_STR "2.0.50727.1433"
+
+#include "wine/wine_common_ver.rc"
Module: wine
Branch: master
Commit: a7be4256f6081684e8fb0258564f9358eb36cfcf
URL: https://gitlab.winehq.org/wine/wine/-/commit/a7be4256f6081684e8fb0258564f93…
Author: Kevin Puetz <PuetzKevinA(a)JohnDeere.com>
Date: Mon Oct 10 23:31:08 2022 +0000
rpcrt4: Add a refcount owned by MIDL_STUB_MESSAGE.
In cases where this could have been use-after-free, exceptions were
caught/hidden by RpcTryFinally, but still lead to leaks since
NdrProxyFreeBuffer wasn't able to call IRPCChannelBuffer::FreeBuffer.
StdProxy_GetChannel() now AddRef() on its return value (used to set
__proxy_frame::_StubMsg::pRpcChannelBuffer), and NdrProxyFreeBuffer()
calls the corresponding Release() and clears the now-weak pointer.
This makes the behavior of these function match the observed test
results, and fixes the crash/leak when a proxy is released mid-Invoke.
---
dlls/rpcrt4/cproxy.c | 5 +++++
dlls/rpcrt4/tests/cstub.c | 8 ++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/dlls/rpcrt4/cproxy.c b/dlls/rpcrt4/cproxy.c
index da3e19e50f3..426b1425d3a 100644
--- a/dlls/rpcrt4/cproxy.c
+++ b/dlls/rpcrt4/cproxy.c
@@ -454,6 +454,9 @@ static void StdProxy_GetChannel(LPVOID iface,
StdProxyImpl *This = impl_from_proxy_obj( iface );
TRACE("(%p)->GetChannel(%p) %s\n",This,ppChannel,This->name);
+ if(This->pChannel)
+ IRpcChannelBuffer_AddRef(This->pChannel);
+
*ppChannel = This->pChannel;
}
@@ -585,6 +588,8 @@ void WINAPI NdrProxyFreeBuffer(void *This,
(RPCOLEMESSAGE*)pStubMsg->RpcMsg);
pStubMsg->fBufferValid = TRUE;
}
+ IRpcChannelBuffer_Release(pStubMsg->pRpcChannelBuffer);
+ pStubMsg->pRpcChannelBuffer = NULL;
}
/***********************************************************************
diff --git a/dlls/rpcrt4/tests/cstub.c b/dlls/rpcrt4/tests/cstub.c
index 57e69389ebd..d44ee36088c 100644
--- a/dlls/rpcrt4/tests/cstub.c
+++ b/dlls/rpcrt4/tests/cstub.c
@@ -1527,7 +1527,7 @@ static void test_ChannelBufferRefCount(IPSFactoryBuffer *ppsf)
NdrProxyInitialize(proxy_if1, &rpcMessage, &stubMessage, &stubDesc, 0);
/* stubMessage should add its own refcount on test_chanbuf */
- todo_wine ok(test_chanbuf.RefCount == 2, "got %ld\n", test_chanbuf.RefCount);
+ ok(test_chanbuf.RefCount == 2, "got %ld\n", test_chanbuf.RefCount);
ok(stubMessage.pRpcChannelBuffer != NULL, "NULL pRocChannelBuffer\n");
/* stubMessage doesn't add its own refcounts on proxy_if1 or proxy_buffer,
@@ -1536,17 +1536,17 @@ static void test_ChannelBufferRefCount(IPSFactoryBuffer *ppsf)
* this unadvise could be reentrant to Invoke because SendReceive pumps STA messages.
* The source would then erase that conection point entry and Release the proxy. */
IRpcProxyBuffer_Disconnect(proxy_buffer);
- todo_wine ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount);
+ ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount);
IRpcProxyBuffer_Release(proxy_buffer);
refs = IUnknown_Release(proxy_if1);
ok(refs == 0, "got %ld\n", refs);
- todo_wine ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount);
+ ok(test_chanbuf.RefCount == 1, "got %ld\n", test_chanbuf.RefCount);
/* NdrProxyFreeBuffer must not dereference the the now-freed proxy_if1,
* yet should still free the remaining reference on test_chanbuf */
NdrProxyFreeBuffer(proxy_if1, &stubMessage);
ok(test_chanbuf.RefCount == 0, "got %ld\n", test_chanbuf.RefCount);
- todo_wine ok(!stubMessage.pRpcChannelBuffer, "dangling pRpcChannelBuffer = %p\n", stubMessage.pRpcChannelBuffer);
+ ok(!stubMessage.pRpcChannelBuffer, "dangling pRpcChannelBuffer = %p\n", stubMessage.pRpcChannelBuffer);
}
START_TEST( cstub )