dispatch.c: fix a memory leak on not deleting the raw1394 wrapper handle.
This commit is contained in:
parent
99e9f575bf
commit
6747abb057
|
@ -61,7 +61,8 @@ void raw1394_destroy_handle(raw1394handle_t handle)
|
||||||
if (handle->is_fw)
|
if (handle->is_fw)
|
||||||
fw_destroy_handle(handle->mode.fw);
|
fw_destroy_handle(handle->mode.fw);
|
||||||
else
|
else
|
||||||
ieee1394_destroy_handle(handle->mode.ieee1394);;
|
ieee1394_destroy_handle(handle->mode.ieee1394);
|
||||||
|
free(handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
raw1394handle_t raw1394_new_handle_on_port(int port)
|
raw1394handle_t raw1394_new_handle_on_port(int port)
|
||||||
|
|
Reference in New Issue