From: Andres Freund Date: Mon, 8 Apr 2024 02:00:11 +0000 (-0700) Subject: simplehash: Free collisions array in SH_STAT X-Git-Tag: REL_12_19~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b179a47242993fe48b1bfa21b17dc9d5e2b35a2;p=thirdparty%2Fpostgresql.git simplehash: Free collisions array in SH_STAT While SH_STAT() is only used for debugging, the allocated array can be large, and therefore should be freed. It's unclear why coverity started warning now. Reported-by: Tom Lane Reported-by: Coverity Discussion: https://postgr.es/m/3005248.1712538233@sss.pgh.pa.us Backpatch: 12- --- diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 145d9db50ec..6c3b96fd549 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -909,6 +909,9 @@ SH_STAT(SH_TYPE * tb) max_collisions = curcoll; } + /* large enough to be worth freeing, even if just used for debugging */ + pfree(collisions); + if (tb->members > 0) { fillfactor = tb->members / ((double) tb->size);