CVSROOT: /cvs Module name: src Changes by: mes...@cvs.openbsd.org 2018/08/01 11:17:42
Modified files: usr.sbin/radiusd: radiusd.c Log message: Fix segmentation fault on radiusd(8) when exiting. If one of the configured modules doesn't have a secret setup then module->secret == NULL which would call strlen(NULL), within freezero(3), and that shouldn't happen, but in this case since the call is done it segfaults and the daemon is not properly shutdown. cluebat stick provided by semarie@, OK tb@ and deraadt@