1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

Fix dead code

from commit 85b7efa1cd

per Coverity report
This commit is contained in:
Peter Eisentraut
2024-12-04 16:43:07 +01:00
parent ccc8194e42
commit dfbb092cff

View File

@ -333,13 +333,14 @@ MatchText(const char *t, int tlen, const char *p, int plen, pg_locale_t locale)
* fails. Otherwise, try again with a longer substring. * fails. Otherwise, try again with a longer substring.
*/ */
if (t1len == 0) if (t1len == 0)
{
if (buf)
pfree(buf);
return LIKE_FALSE; return LIKE_FALSE;
}
else else
NextChar(t1, t1len); NextChar(t1, t1len);
} }
if (buf)
pfree(buf);
continue;
} }
else if (GETCHAR(*p, locale) != GETCHAR(*t, locale)) else if (GETCHAR(*p, locale) != GETCHAR(*t, locale))
{ {