On Sat, May 8, 1999, Steve Price wrote: > Program terminated with signal 11, Segmentation fault. > Reading symbols from /usr/lib/libcrypt.so.2...done. > Reading symbols from /usr/lib/libmd.so.2...done. > Reading symbols from /usr/lib/libutil.so.2...done. > Reading symbols from /usr/lib/libz.so.2...done. > Reading symbols from /usr/lib/libalias.so.3...done. > Reading symbols from /usr/lib/libdes.so.3...done. > Reading symbols from /usr/lib/libradius.so.1...done. > Reading symbols from /usr/lib/libc.so.3...done. > Reading symbols from /usr/libexec/ld-elf.so.1...done. > #0 0x805b519 in FsmRecvConfigRej (fp=0x80ae608, lhp=0xbfbfce98, bp=0x0) ^^^^^^ > at fsm.c:795 > 795 (*fp->fn->DecodeConfig)(fp, MBUF_CTOP(bp), flen, MODE_REJ, &dec);
fp->fn->DecodeConfig should point to something that checks for a null pointer, or make FsmRecvConfigRej check something like... if (!bp || (bp && !*bp)) { return -1; } or something to that effect. -- Chris Costello <ch...@calldei.com> Avoid temporary variables and strange women. To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message