mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-27 18:04:17 +03:00
[ASAN] deltas: Fix minor memory leak
We were leaking the checksum, ensure we free it in both normal and error paths. Closes: #598 Approved by: jlebon
This commit is contained in:
parent
79cb421ee2
commit
ab0400b722
@ -286,6 +286,7 @@ _ostree_static_delta_part_execute (OstreeRepo *repo,
|
||||
|
||||
ret = TRUE;
|
||||
out:
|
||||
g_clear_pointer (&state->content_checksum, g_checksum_free);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -941,6 +942,7 @@ dispatch_close (OstreeRepo *repo,
|
||||
goto out;
|
||||
|
||||
g_clear_pointer (&state->xattrs, g_variant_unref);
|
||||
g_clear_pointer (&state->content_checksum, g_checksum_free);
|
||||
g_clear_object (&state->content_out);
|
||||
|
||||
state->checksum_index++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user