Обсуждение: pgsql: Add missing error check in regexp parser.

Поиск
Список
Период
Сортировка

pgsql: Add missing error check in regexp parser.

От
Tom Lane
Дата:
Add missing error check in regexp parser.

parseqatom() failed to check for an error return (NULL result) from its
recursive call to parsebranch(), and in consequence could crash with a
null-pointer dereference after an error return.  This bug has been there
since day one, but wasn't noticed before, probably because most error cases
in parsebranch() didn't actually lead to returning NULL.  Add the missing
error check, and also tweak parsebranch() to exit in a less indirect
fashion after a call to parseqatom() fails.

Report by Tomasz Karlik, fix by me.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0c54796b5c7458449152d3f812eee5b6cb014c93

Modified Files
--------------
src/backend/regex/regcomp.c |    2 ++
1 files changed, 2 insertions(+), 0 deletions(-)