Thread (2 messages) flat view 2 messages, 2 authors, 2021-10-15

Re: To "const char *" and cast on free(), or "char *" and no cast...

From: Junio C Hamano <hidden>
Date: 2021-10-14 20:22:49

Ævar Arnfjörð Bjarmason [off-list ref] writes:
quoted
It's great to see these leaks being fixed. I wonder though if it would
be better to change the structure definition so that 'name' and 'path' 
are no longer 'const'. That would be a better reflection of the new
regime.[...]
I think this is the right thing to do, but I'm not quite sure. There was
a thread at it here:

    https://lore.kernel.org/git/YUZG0D5ayEWd7MLP@carlos-mbp.lan/ (local)

Where I chimed in and suggested exactly what you're saying here, but the
consensus seemed to go the other way, and if you grep:

    git grep -F 'free((char *)'

You can see that we use this pattern pretty widely.
Unfortunately, we probably need to make a trade-off and cannot eat
the cake and have it at the same time.

If we leave the .members non-const, the destructor may have to cast
the constness away.  If it is marked const * const, then we also
need to let the constructor do the same.

By marking the .members const, we can be sure that the users of the
API will not muck with the values once the structure is instanciated
and given to them, but the destructor need to cast the constness
away.  It may be lessor of two evils, as the need to cast is isolated
in the _implementation_ of the API, and casts in the _users_ of the API
would stand out more.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help