Skip to content

Commit 9377b4f

Browse files
committed
Fix memory leak for hashing with nondeterministic collations.
Backpatch through 12, where nondeterministic collations were introduced (5e1963f). Backpatch-through: 12
1 parent e10799a commit 9377b4f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/backend/access/hash/hashfunc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ hashtext(PG_FUNCTION_ARGS)
303303
buf = palloc(bsize);
304304
ucol_getSortKey(mylocale->info.icu.ucol,
305305
uchar, ulen, buf, bsize);
306+
pfree(uchar);
306307

307308
result = hash_any(buf, bsize);
308309

@@ -360,6 +361,7 @@ hashtextextended(PG_FUNCTION_ARGS)
360361
buf = palloc(bsize);
361362
ucol_getSortKey(mylocale->info.icu.ucol,
362363
uchar, ulen, buf, bsize);
364+
pfree(uchar);
363365

364366
result = hash_any_extended(buf, bsize, PG_GETARG_INT64(1));
365367

src/backend/utils/adt/varchar.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,6 +1030,7 @@ hashbpchar(PG_FUNCTION_ARGS)
10301030
buf = palloc(bsize);
10311031
ucol_getSortKey(mylocale->info.icu.ucol,
10321032
uchar, ulen, buf, bsize);
1033+
pfree(uchar);
10331034

10341035
result = hash_any(buf, bsize);
10351036

@@ -1091,6 +1092,7 @@ hashbpcharextended(PG_FUNCTION_ARGS)
10911092
buf = palloc(bsize);
10921093
ucol_getSortKey(mylocale->info.icu.ucol,
10931094
uchar, ulen, buf, bsize);
1095+
pfree(uchar);
10941096

10951097
result = hash_any_extended(buf, bsize, PG_GETARG_INT64(1));
10961098

0 commit comments

Comments
 (0)