Re: [HACKERS] Breakage in crypt.c

2002-06-14 Thread Bruce Momjian
Tom Lane wrote: > There are various paths of control in md5_crypt_verify that do > > if (passwd) > pfree(passwd); > if (valuntil) > pfree(valuntil); > > Isn't this now pfree'ing part of the saved pre-parsed pg_pwd data? Oop

[HACKERS] Breakage in crypt.c

2002-06-14 Thread Tom Lane
There are various paths of control in md5_crypt_verify that do if (passwd) pfree(passwd); if (valuntil) pfree(valuntil); Isn't this now pfree'ing part of the saved pre-parsed pg_pwd data? reg