There are two leftover instances where we return raw C pointers from
local functions. For safety and consistency with the rest of the code
convert those functions to return unique_ptr.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
namespace {
-::gpiod_edge_event_buffer* make_edge_event_buffer(unsigned int capacity)
+edge_event_buffer_ptr make_edge_event_buffer(unsigned int capacity)
{
- ::gpiod_edge_event_buffer* buffer = ::gpiod_edge_event_buffer_new(capacity);
+ edge_event_buffer_ptr buffer(::gpiod_edge_event_buffer_new(capacity));
if (!buffer)
throw_from_errno("unable to allocate the edge event buffer");
namespace {
-::gpiod_line_config* make_line_config()
+line_config_ptr make_line_config()
{
- ::gpiod_line_config *config = ::gpiod_line_config_new();
+ line_config_ptr config(::gpiod_line_config_new());
if (!config)
throw_from_errno("Unable to allocate the line config object");