c
if (ev->status) {
	for (i = 0; i < ev->num_bis; i++) {
		u16 handle = le16_to_cpu(ev->bis[i]);
		bis = hci_conn_hash_lookup_handle(hdev, handle); 
		if (!bis) {
			continue; // Skip to the next iteration
		}
		// ... safe to use 'bis' ...
	}
}
