On Thu, 2021-09-30 at 16:04 +0000, Jacob Champion wrote: > On Thu, 2021-09-30 at 14:17 +0200, Daniel Gustafsson wrote: > > The libpq libnss implementation doesn't call either of these, and neither > > does > > libnss. > > I thought the refs check only searched for direct symbol dependencies; > is that piece of NSPR being statically included somehow?
On my machine, at least, exit() is coming in due to a few calls to psprintf(), pstrdup(), and pg_malloc() in the new NSS code. (Disassembly via `objdump -S libpq.so` helped me track those down.) I'm working on a patch. --Jacob