Re: BUG #5243: Segmentation fault when sending null to crypt(); - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #5243: Segmentation fault when sending null to crypt();
Date
Msg-id 11687.1260816013@sss.pgh.pa.us
Whole thread Raw
In response to BUG #5243: Segmentation fault when sending null to crypt();  ("Greg Johnson" <greg.johnson@interprose.com>)
List pgsql-bugs
"Greg Johnson" <greg.johnson@interprose.com> writes:
> Postgresql version 8.4.1 and 8.3.8 both seg fault when you pass null into
> crypt function.

> select crypt(null, gen_salt('md5'));

Not if the crypt function is properly defined:

CREATE OR REPLACE FUNCTION crypt(text, text)
RETURNS text
AS 'MODULE_PATHNAME', 'pg_crypt'
LANGUAGE C IMMUTABLE STRICT;

The CVS history shows that the STRICT marker was added in 8.1.
If you are still using pre-8.1 definitions of the pgcrypto
functions (no doubt via a long chain of dump/reload), you really need to
update them to current, because you're missing a lot of functionality.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Greg Johnson"
Date:
Subject: BUG #5243: Segmentation fault when sending null to crypt();
Next
From: Robert Haas
Date:
Subject: Re: Invalid explain output for multi-plan statements