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>
maint
René Scharfe 2021-12-18 10:47:03 +01:00 committed by Junio C Hamano
parent e9d7761bb9
commit 999bba3e0b
1 changed files with 1 additions and 1 deletions

View File

@ -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;