Without this patch a crash with 32-bit tests with versions Win8.1 to Win10-1607 is visible.
[Test pattern page](https://test.winehq.org/data/patterns.html#bluetoothapis:gatt)
[Testbot run with this patch](https://testbot.winehq.org/JobDetails.pl?Key=159525)
From: Bernhard Übelacker bernhardu@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 );