"git format-patch" uses a single rev_info instance and then exits.
Mark the structure with UNLEAK() macro to squelch leak sanitizer.

* jc/unleak-log:
  format-patch: mark rev_info with UNLEAK
This commit is contained in:
Junio C Hamano 2022-01-03 16:24:14 -08:00
Родитель 2ae0a9cb82 dee839a263
Коммит 8bb565d375
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -2256,6 +2256,7 @@ done:
strbuf_release(&rdiff1);
strbuf_release(&rdiff2);
strbuf_release(&rdiff_title);
UNLEAK(rev);
return 0;
}