17 Oct
2024
17 Oct
'24
3:05 a.m.
Elizabeth Figura (@zfigura) commented about dlls/winebth.sys/winebth.c:
+ ret = IoCreateDevice( driver, 0, NULL, FILE_DEVICE_BUS_EXTENDER, 0, FALSE, &bus_fdo ); + if (ret != STATUS_SUCCESS) + { + ERR( "failed to create FDO: %#lx\n", ret ); + return ret; + } + + IoAttachDeviceToDeviceStack( bus_fdo, pdo ); + bus_pdo = pdo; + bus_fdo->Flags &= ~DO_DEVICE_INITIALIZING; + return STATUS_SUCCESS; +} + +static void WINAPI driver_unload( DRIVER_OBJECT *driver ) +{ + FIXME( "(%p) stub!\n", driver ); I don't think there's a need for a FIXME here?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6621#note_85252