mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-22 07:44:03 -04:00
AP_HAL_Linux: PWM_Sysfs: remove unneeded free() in ~PWM_Sysfs_Base
_export_path and _duty_path will have been already long time gone by the time dtors kick in. Probably better to use OwnPtr around those. But it's better to be done in a separate PR.
This commit is contained in:
parent
2738fc34f0
commit
f6858821a6
@ -46,10 +46,8 @@ PWM_Sysfs_Base::~PWM_Sysfs_Base()
|
||||
{
|
||||
::close(_duty_cycle_fd);
|
||||
|
||||
free(_export_path);
|
||||
free(_polarity_path);
|
||||
free(_enable_path);
|
||||
free(_duty_path);
|
||||
free(_period_path);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user