libsysprof: adopt FD that was created for us

This commit is contained in:
Christian Hergert
2019-05-10 14:52:40 -07:00
parent de1d9f7131
commit 0fe8a688d1

View File

@ -431,7 +431,10 @@ sysprof_perf_counter_open (SysprofPerfCounter *self,
g_return_val_if_fail (group_fd >= -1, -1);
if (sysprof_helpers_perf_event_open (helpers, attr, pid, cpu, group_fd, flags, NULL, &out_fd, NULL))
return out_fd;
{
sysprof_perf_counter_take_fd (self, out_fd);
return out_fd;
}
return -1;
}