diff options
| author | Patrick Steinhardt <ps@pks.im> | 2024-05-27 13:46:25 +0200 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-05-27 11:19:59 -0700 |
| commit | a6cb0cc61033d10eb948057c45dea25c1ab8e151 (patch) | |
| tree | 2d5b443acc17c1a5b497ad903eef4a4615240ef7 /convert.h | |
| parent | diff: refactor code to clarify memory ownership of prefixes (diff) | |
| download | git-a6cb0cc61033d10eb948057c45dea25c1ab8e151.tar.gz git-a6cb0cc61033d10eb948057c45dea25c1ab8e151.zip | |
convert: refactor code to clarify ownership of check_roundtrip_encoding
The `check_roundtrip_encoding` variable is tracked in a `const char *`
even though it may contain allocated strings at times. The result is
that those strings may be leaking because we never free them.
Refactor the code to always store allocated strings in this variable.
The default value is handled in `check_roundtrip()` now, which is the
only user of the variable.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'convert.h')
| -rw-r--r-- | convert.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ void convert_attrs(struct index_state *istate, struct conv_attrs *ca, const char *path); extern enum eol core_eol; -extern const char *check_roundtrip_encoding; +extern char *check_roundtrip_encoding; const char *get_cached_convert_stats_ascii(struct index_state *istate, const char *path); const char *get_wt_convert_stats_ascii(const char *path); |
