Skip to content

Commit 3f2adac

Browse files
committed
Fix end-of-loop optimization in pglz_find_match() function.
After the recent pglz optimization patch, the next/prev pointers in the hash table are never NULL, INVALID_ENTRY_PTR is used to represent invalid entries instead. The end-of-loop check in pglz_find_match() function didn't get the memo. The result was the same from a correctness point of view, but because the NULL-check would never fail, the tiny optimization turned into a pessimization. Reported by Stephen Frost, using Coverity scanner.
1 parent 750f436 commit 3f2adac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/utils/adt/pg_lzcompress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ pglz_find_match(int16 *hstart, const char *input, const char *end,
466466
* Be happy with lesser good matches the more entries we visited. But
467467
* no point in doing calculation if we're at end of list.
468468
*/
469-
if (hent)
469+
if (hent != INVALID_ENTRY_PTR)
470470
{
471471
if (len >= good_match)
472472
break;

0 commit comments

Comments
 (0)