From: Junio C Hamano <gitster@pobox.com>
To: "René Scharfe" <l.s.r@web.de>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] cocci: remove risky "if (!E) free(E)" conversion
Date: Sat, 12 Sep 2026 12:07:47 -0700 [thread overview]
Message-ID: <xmqqcxui8f0c.fsf@gitster.g> (raw)
In-Reply-To: <caa39ca4-b35e-4fff-80fb-af6856cb2098@web.de> ("René Scharfe"'s message of "Sat, 12 Sep 2026 09:13:29 +0200")
René Scharfe <l.s.r@web.de> writes:
> On 9/12/26 12:09 AM, Junio C Hamano wrote:
>> The current cocci patches try to convert
>>
>> if (!E)
>> free(E);
>>
>> into an unconditional call to free(E), with the rationale
>>
>> cocci: detect useless free(3) calls
>>
>> Add a semantic patch for removing checks that cause free(3) to only be
>> called with a NULL pointer, as that must be a programming mistake.
>>
>> which came from ec6cd14c7a (cocci: detect useless free(3) calls,
>> 2017-02-11).
>>
>> Leaving _something_ in ALL.patch output to draw programmers'
>> attention is a good thing, but this changes a piece of code that is
>> originally a no-op to do something else, which may be even worse.
>
> Good point. It's likely that the programmer just wanted to release the
> object in question and got the check wrong, but it's also possible that
> the free(3) call is wrong as well, and that could do real damage.
>> We could change it to
>>
>> if (!E)
>> BUG("free(E) is certainly not what we meant to write");
>>
>> to force programmers to think. But it probably is safer to just
>> rewrite one form of no-op into a simpler form of no-op.
>
> With that last sentence I expected the patch to also remove the free(3)
> or commit_list_free() call, replacing the no-op with nothing, which is
> safe and simple.
You mean
if (!E)
- free(E);
+ ; /* no op free(E) */
or something? I guess we could do so, but I feared that a compiler
that is smart enough complain and trip -Werror on us when E is too
obviously a side-effect free expression such as a reference to a
simple variable.
next prev parent reply other threads:[~2026-09-12 19:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-11 22:09 [PATCH] cocci: remove risky "if (!E) free(E)" conversion Junio C Hamano
2026-09-11 22:21 ` [PATCH] cocci: FREE_AND_NULL(E) is safe to call on NULL Junio C Hamano
2026-09-12 7:13 ` [PATCH] cocci: remove risky "if (!E) free(E)" conversion René Scharfe
2026-09-12 19:07 ` Junio C Hamano [this message]
2026-09-13 10:45 ` René Scharfe
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=xmqqcxui8f0c.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=l.s.r@web.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.