mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
unit_tests: fix leak when the test check fails
Coverity 189527
This commit is contained in:
parent
7e2483e1d5
commit
fa3f756bfb
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,8 @@ TEST(notify, works)
|
|||
tmp = "/tmp";
|
||||
static const char *filename = "monero-notify-unit-test-XXXXXX";
|
||||
const size_t len = strlen(tmp) + 1 + strlen(filename);
|
||||
char *name_template = (char*)malloc(len + 1);
|
||||
std::unique_ptr<char[]> name_template_((char*)malloc(len + 1));
|
||||
char *name_template = name_template_.get();
|
||||
ASSERT_TRUE(name_template != NULL);
|
||||
snprintf(name_template, len + 1, "%s/%s", tmp, filename);
|
||||
int fd = mkstemp(name_template);
|
||||
|
@ -75,5 +76,4 @@ TEST(notify, works)
|
|||
ASSERT_TRUE(s == "1111111111111111111111111111111111111111111111111111111111111111");
|
||||
|
||||
boost::filesystem::remove(name_template);
|
||||
free(name_template);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue