Skip to content

Commit

Permalink
fix leak in test_init
Browse files Browse the repository at this point in the history
  • Loading branch information
xabxx committed May 16, 2019
1 parent 4e0b33f commit 2d7d931
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions rcl/test/rcl/test_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class CLASSNAME (TestRCLFixture, RMW_IMPLEMENTATION) : public ::testing::Test
struct FakeTestArgv
{
FakeTestArgv()
: allocator(rcutils_get_default_allocator()), argc(2)
: allocator(rcl_get_default_allocator()), argc(2)
{
this->argv =
static_cast<char **>(allocator.allocate(2 * sizeof(char *), allocator.state));
Expand All @@ -82,15 +82,15 @@ struct FakeTestArgv
if (this->argv) {
if (this->argc > 0) {
size_t unsigned_argc = this->argc;
for (size_t i = 0; i < unsigned_argc; --i) {
for (size_t i = 0; i < unsigned_argc; ++i) {
allocator.deallocate(this->argv[i], allocator.state);
}
}
}
allocator.deallocate(this->argv, allocator.state);
}

rcutils_allocator_t allocator;
rcl_allocator_t allocator;
int argc;
char ** argv;

Expand Down Expand Up @@ -201,6 +201,9 @@ TEST_F(CLASSNAME(TestRCLFixture, RMW_IMPLEMENTATION), test_rcl_init_and_ok_and_s
ret = rcl_context_fini(&context);
EXPECT_EQ(ret, RCL_RET_OK);
context = rcl_get_zero_initialized_context();
OSRF_TESTING_TOOLS_CPP_SCOPE_EXIT({
EXPECT_EQ(RCL_RET_OK, rcl_init_options_fini(&init_options)) << rcl_get_error_string().str;
});
}

/* Tests the rcl_get_instance_id() and rcl_ok() functions.
Expand Down

0 comments on commit 2d7d931

Please sign in to comment.