On Mon, 13 Aug 2012 02:41:35 -0400
Alexander Kabaev <kab...@gmail.com> wrote:

[snip lots of gdb trace]

> Please check the use of _SC_GETPW_R_SIZE_MAX in vlcpulse.c. This
> constant is unsupported, so the module tries to allocate a stack buffer
> with negative size, smashing the stack dead.
> 

Seems like a good idea, but I replaced the rather sloppy
        buf[sysctl(_SC_GETPW_R_SIZE_MAX)];
with
        buf[2048];
and vlc still core dumps when trying to generate plugins.dat.

> So far, I see absolutely no evidence of any wrongdoing on the rtld
> side of things.
>

-- 
Gary Jennejohn
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to