Skip to content

Commit 63cfa60

Browse files
committed
Return ERROR_INVALID_PARAMETER from stream_device_destroy if device is nullptr.
1 parent 94e8b77 commit 63cfa60

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cubeb-backend/src/capi.rs

+3
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,9 @@ pub unsafe extern "C" fn capi_stream_device_destroy<STM: StreamOps>(
424424
device: *mut ffi::cubeb_device,
425425
) -> c_int {
426426
let stm = &mut *(s as *mut STM);
427+
if device.is_null() {
428+
return ffi::CUBEB_ERROR_INVALID_PARAMETER;
429+
}
427430
let device = DeviceRef::from_ptr(device);
428431
let _ = stm.device_destroy(device);
429432
ffi::CUBEB_OK

0 commit comments

Comments
 (0)