Re: Warning on contrib/tsearch2 - Mailing list pgsql-hackers

From Teodor Sigaev
Subject Re: Warning on contrib/tsearch2
Date
Msg-id 460BE546.70304@sigaev.ru
Whole thread Raw
In response to Re: Warning on contrib/tsearch2  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
> code: random backend code should not, not, not be using fopen()
> directly.  If you lose control to an elog, which is certainly possible
> seeing that this loop calls into the utils/mb subsystem, you'll leak
> the file descriptor.  Use AllocateFile/FreeFile instead of fopen/fclose.
Will soon in tsearch_core patch

> 
> I find the direct use of malloc/realloc/strdup to be poor style as well
> --- backend code that is not using palloc needs to have *very* good
> reason to do so, and I see none here.

Already in tsearch_core patch.



-- 
Teodor Sigaev                                   E-mail: teodor@sigaev.ru
  WWW: http://www.sigaev.ru/
 


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Modifying TOAST thresholds
Next
From: Teodor Sigaev
Date:
Subject: tsearch_core patch for inclusion