Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
1c794002
Commit
1c794002
authored
Dec 08, 2017
by
Mark Andrews
Browse files
4844. [test] Address memory leaks in libatf-c. [RT #46798]
parent
8444b485
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
1c794002
4844. [test] Address memory leaks in libatf-c. [RT #46798]
4843. [bug] dnssec-signzone free hashlist on exit. [RT #46791]
4842. [bug] Conditionally compile opensslecdsa_link.c to avoid
...
...
unit/atf-src/atf-c/detail/map.c
View file @
1c794002
...
...
@@ -364,6 +364,7 @@ atf_map_insert(atf_map_t *m, const char *key, void *value, bool managed)
if
(
atf_is_error
(
err
))
{
if
(
managed
)
free
(
value
);
free
(
me
->
m_key
);
free
(
me
);
}
}
...
...
unit/atf-src/atf-c/detail/tp_main.c
View file @
1c794002
...
...
@@ -285,6 +285,7 @@ list_tcs(const atf_tp_t *tp)
atf_utils_free_charpp
(
vars
);
}
free
(
tcs
);
}
/* ---------------------------------------------------------------------
...
...
unit/atf-src/atf-c/tc.c
View file @
1c794002
...
...
@@ -614,7 +614,9 @@ void
atf_tc_fini
(
atf_tc_t
*
tc
)
{
atf_map_fini
(
&
tc
->
pimpl
->
m_vars
);
atf_map_fini
(
&
tc
->
pimpl
->
m_config
);
free
(
tc
->
pimpl
);
tc
->
pimpl
=
NULL
;
}
/*
...
...
Mark Andrews
@marka
mentioned in commit
9c476db4
·
Dec 20, 2017
mentioned in commit
9c476db4
mentioned in commit 9c476db4b3fb4e0fb761e8a34319b65f8febc939
Toggle commit list
Mark Andrews
@marka
mentioned in commit
e68c3d1c
·
Jan 26, 2018
mentioned in commit
e68c3d1c
mentioned in commit e68c3d1c7eaaa7af396a59d93d621daa959a9057
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment