From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: Patrick Steinhardt <ps@pks.im>, git@vger.kernel.org
Subject: Re: What's cooking in git.git (Jun 2024, #01; Mon, 3)
Date: Tue, 4 Jun 2024 04:52:00 -0400 [thread overview]
Message-ID: <20240604085200.GA1147131@coredump.intra.peff.net> (raw)
In-Reply-To: <xmqqo78h1bdg.fsf@gitster.g>
On Mon, Jun 03, 2024 at 11:16:11PM -0700, Junio C Hamano wrote:
> * jc/t1517-more (2024-05-31) 1 commit
> (merged to 'next' on 2024-06-03 at 10b71e2a60)
> + t1517: more coverage for commands that work without repository
>
> "smoke tests" to ensure git commands that are designed to run
> outside repositories do work.
>
> Will merge to 'master'.
> source: <xmqqwmnajrrk.fsf@gitster.g>
This one seems to fail the CI leak jobs (I noticed it on next, but I
think even the tip of the feature branch fails).
One possible fix is this:
diff --git a/imap-send.c b/imap-send.c
index a5d1510180..26d5909e79 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1539,16 +1539,17 @@ int cmd_main(int argc, const char **argv)
/* read the messages */
if (strbuf_read(&all_msgs, 0, 0) < 0) {
error_errno(_("could not read from stdin"));
return 1;
}
if (all_msgs.len == 0) {
fprintf(stderr, "nothing to send\n");
+ strbuf_release(&all_msgs);
return 1;
}
total = count_messages(&all_msgs);
if (!total) {
fprintf(stderr, "no messages to send\n");
return 1;
}
But I wonder if strbuf_read() should handle the allocation itself when
it does a 0-byte read. We already do so for an error return (so the
"could not read from stdin" path above is actually OK).
Maybe a moot point, though. I think we _always_ leak the all_msgs
strbuf, so probably the whole function needs more unified cleanup. It
looks like Patrick's 11637fc740 (imap-send: fix leaking memory in
`imap_server_conf`, 2024-06-03) does that refactoring (but isn't yet in
'next'). Once ps/no-writable-strings is merged, we should be able to
just do:
diff --git a/imap-send.c b/imap-send.c
index da3e7ec17e..01404e5047 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1585,5 +1585,6 @@ int cmd_main(int argc, const char **argv)
free(server.user);
free(server.pass);
free(server.auth_method);
+ strbuf_release(&all_msgs);
return ret;
}
on top. Weirdly, with ps/no-writable-strings merged (but without the fix
above applied yet), SANITIZE=leak does not seem to find the leak
anymore! Even though I can confirm in a debugger or by printing the
strbuf's fields that it is still there. So that's...odd. But whatever is
going on with LSan, the fix above is the right thing.
-Peff
next prev parent reply other threads:[~2024-06-04 8:52 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-04 6:16 What's cooking in git.git (Jun 2024, #01; Mon, 3) Junio C Hamano
2024-06-04 8:06 ` Patrick Steinhardt
2024-06-04 8:07 ` Karthik Nayak
2024-06-04 18:31 ` Junio C Hamano
2024-06-04 8:52 ` Jeff King [this message]
2024-06-04 18:36 ` Junio C Hamano
2024-06-05 8:35 ` Jeff King
2024-06-05 16:30 ` Junio C Hamano
2024-06-04 8:59 ` Christian Couder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240604085200.GA1147131@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=ps@pks.im \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).