Re: [HACKERS] Breakage in crypt.c
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
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