Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix z_bytes_clone memory leak #826

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/collections/vec.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ void _z_svec_move(_z_svec_t *dst, _z_svec_t *src) {

z_result_t _z_svec_copy(_z_svec_t *dst, const _z_svec_t *src, z_element_copy_f copy, size_t element_size,
bool use_elem_f) {
dst->_capacity = 0;
dst->_len = 0;
*dst = _z_svec_null();
dst->_val = z_malloc(element_size * src->_capacity);
if (dst->_val == NULL) {
return _Z_ERR_SYSTEM_OUT_OF_MEMORY;
Expand Down
Loading