CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2018/06/20 06:10:46
Modified files:
sbin/dhclient : dhclient.c
Log message:
dhclient.c r1.569 started writing some files before calling daemon(),
which involved doing a write_option_db() call at a different point in
bind_lease().
However one of the parameters was in a variable that was also used for
iterating a TAILQ so this did not have the intended contents (it was
always NULL at the end of TAILQ_FOREACH*, resulting in a null deref
when dhclient -L is used).
Fix by using a new temporary variable. ok krw@