From: Bernhard Übelacker <bernhardu(a)mailbox.org> Without this patch a crash with 32-bit tests with versions Win8.1 to Win10-1607 is visible. --- dlls/bluetoothapis/tests/gatt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/bluetoothapis/tests/gatt.c b/dlls/bluetoothapis/tests/gatt.c index 242fdd3b62c..89604f589dd 100644 --- a/dlls/bluetoothapis/tests/gatt.c +++ b/dlls/bluetoothapis/tests/gatt.c @@ -215,7 +215,7 @@ static void test_BluetoothGATTGetCharacteristic( void ) { HRESULT ret; USHORT actual = 0; - BTH_LE_GATT_SERVICE svc; + BTH_LE_GATT_SERVICE svc = {0}; ret = BluetoothGATTGetCharacteristics( NULL, NULL, 0, NULL, NULL, 0 ); ok( ret == E_POINTER, "got ret %#lx\n", ret ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8835