pgsql: Fix minor bug in regexp makesearch() function. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix minor bug in regexp makesearch() function.
Date
Msg-id E1ZZpWo-0000Yg-Hc@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix minor bug in regexp makesearch() function.

The list-wrangling here was done wrong, allowing the same state to get
put into the list twice.  The following loop then would clone it twice.
The second clone would wind up with no inarcs, so that there was no
observable misbehavior AFAICT, but a useless state in the finished NFA
isn't an especially good thing.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/91cf3135b9079bf44ee9b4b445531987cdb7deee

Modified Files
--------------
src/backend/regex/regcomp.c |   19 ++++++++++++-------
1 file changed, 12 insertions(+), 7 deletions(-)


pgsql-committers by date:

Previous
From: Teodor Sigaev
Date:
Subject: pgsql: Fix oversight in 013ebc0a7b7ea9c1b1ab7a3d4dd75ea121ea8ba7 commit
Next
From: Tom Lane
Date:
Subject: pgsql: Fix minor bug in regexp makesearch() function.