diff options
| author | Patrick Steinhardt <ps@pks.im> | 2024-08-14 08:52:00 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-08-14 10:07:57 -0700 |
| commit | 9ddd5f755d78dd2a3119b63d5f78ca93e4fd3eba (patch) | |
| tree | 725b5cc5d4548a6b251771eeea06fb87be24e1c9 /object-name.c | |
| parent | aa9ef614dc281d123e8f18d19c9abecf82295c0e (diff) | |
| download | git-9ddd5f755d78dd2a3119b63d5f78ca93e4fd3eba.tar.xz | |
object-name: fix leaking symlink paths in object context
The object context may be populated with symlink contents when reading a
symlink, but the associated strbuf doesn't ever get released when
releasing the object context, causing a memory leak. Plug it.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object-name.c')
| -rw-r--r-- | object-name.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/object-name.c b/object-name.c index 240a93e7ce..e39fa50e47 100644 --- a/object-name.c +++ b/object-name.c @@ -1765,6 +1765,7 @@ int strbuf_check_branch_ref(struct strbuf *sb, const char *name) void object_context_release(struct object_context *ctx) { free(ctx->path); + strbuf_release(&ctx->symlink_path); } /* |
