diff options
author | René Scharfe <l.s.r@web.de> | 2021-12-18 10:47:03 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-12-20 21:43:18 +0100 |
commit | 999bba3e0bbb2e81a3e1b2bdb5846479d1e663ad (patch) | |
tree | f360d95ec3c0fae8e109cf892a228938989f4e7c /daemon.c | |
parent | Git 2.34.1 (diff) | |
download | git-999bba3e0bbb2e81a3e1b2bdb5846479d1e663ad.tar.xz git-999bba3e0bbb2e81a3e1b2bdb5846479d1e663ad.zip |
daemon: plug memory leak on overlong path
Release the strbuf containing the interpolated path after copying it to
a stack buffer and before erroring out if it's too long.
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,13 +232,13 @@ static const char *path_ok(const char *directory, struct hostinfo *hi) rlen = strlcpy(interp_path, expanded_path.buf, sizeof(interp_path)); + strbuf_release(&expanded_path); if (rlen >= sizeof(interp_path)) { logerror("interpolated path too large: %s", interp_path); return NULL; } - strbuf_release(&expanded_path); loginfo("Interpolated dir '%s'", interp_path); dir = interp_path; |