nsxiv/etc/woodpecker
NRK 5c6745436f [ci]: silence false positive warning
clang-tidy currently flags the following:

	util.c:57:8: error: 'ptr' may be set to null if 'realloc' fails, which may result in a leak of the original buffer [bugprone-suspicious-realloc-usage,-warnings-as-errors]
	        ptr = realloc(ptr, size);

the analysis here is correct, but if realloc fails, we simply exit so
there's no real "leak".

moreover this check is not very useful for nsxiv's codebase because we
do not use naked realloc(), instead we use the erealloc wrapper that
exits on failure. so just disable the warning entirely instead of
changing the source code to silence the false positive.
2023-05-13 23:28:27 +06:00
..
CFLAGS Move uncritical files into `etc/` (#350) 2022-08-09 16:21:52 +02:00
analysis.sh [ci]: make it easy to run analysis locally (#395) 2022-12-02 10:50:15 +00:00
analysis.yml [ci]: make it easy to run analysis locally (#395) 2022-12-02 10:50:15 +00:00
build.yml [ci]: try building all combination with tcc (#338) 2022-10-07 15:37:44 +02:00
clang-tidy-checks [ci]: silence false positive warning 2023-05-13 23:28:27 +06:00
spell.yml [ci]: fix things (#400) 2023-01-12 04:52:28 +00:00
try-all-builds.sh [ci]: try building all combination with tcc (#338) 2022-10-07 15:37:44 +02:00