Elizabeth Figura (@zfigura) commented about dlls/bluetoothapis/main.c:
- {
SetLastError( ERROR_INVALID_PARAMETER );
return NULL;
- }
- if (!params->hRadio)
- {
/* TODO: Perform device inquiry on all local radios */
FIXME( "semi-stub!\n" );
SetLastError( ERROR_INVALID_PARAMETER );
return NULL;
- }
- if (!radio_set_inquiry( params->hRadio, TRUE ))
return NULL;
- Sleep( params->cTimeoutMultiplier * 1280 );
- radio_set_inquiry( params->hRadio, FALSE );
Not familiar with the implementation, but is this part not supposed to be guarded out by fIssueInquiry?