Clear errno before calling strtol() in spell.c.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: da85544ae53f8eb86dcf0e50e3df2aa9068ca38a
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2025-03-08T16:24:57Z
Releases: 14.18
Clear errno before calling strtol() in spell.c.

Per POSIX, a caller of strtol() that wishes to check for errors must
set errno to 0 beforehand.  Several places in spell.c neglected that,
so that they risked delivering a false overflow error in case errno
had been ERANGE already.  Given the lack of field reports, this case
may be unreachable at present --- but it's surely trouble waiting to
happen, so fix it.

Author: Jacob Brazeal <jacob.brazeal@gmail.com>
Discussion: https://postgr.es/m/CA+COZaBhsq6EromFm+knMJfzK6nTpG23zJ+K2=nfUQQXcj_xcQ@mail.gmail.com
Backpatch-through: 13

Files

PathChange+/−
src/backend/tsearch/spell.c modified +4 −0

Discussion