diff options
| author | 2010-08-05 11:50:32 +0200 | |
|---|---|---|
| committer | 2010-09-07 11:18:08 +0200 | |
| commit | c321058ae33d156ec45ac8fec7355cb57462bff8 (patch) | |
| tree | 8f89ec236b5065f98432af32cb840c083177170c | |
| parent | Add missing malloc failure checks (diff) | |
Fix raw1394_iso_stop on firewire-core
The argument to FW_CDEV_IOC_STOP_ISO was missing.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
| -rw-r--r-- | src/fw-iso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw-iso.c b/src/fw-iso.c index 5aac9fe..7f2fbc3 100644 --- a/src/fw-iso.c +++ b/src/fw-iso.c @@ -588,7 +588,7 @@ void fw_iso_stop(fw_handle_t handle) struct fw_cdev_stop_iso stop_iso; stop_iso.handle = 0; - ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO); + ioctl(handle->iso.fd, FW_CDEV_IOC_STOP_ISO, &stop_iso); handle->iso.head = handle->iso.buffer; handle->iso.tail = handle->iso.buffer; |
