From: Mark Andrews Date: Wed, 29 Jan 2014 20:44:02 +0000 (+1100) Subject: 3718. [bug] A missing ISC_LINK_INIT in log.c. [RT #35260] X-Git-Tag: v9.10.0a2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbc0e37e0c3732b20b0629056e98d712a118637f;p=thirdparty%2Fbind9.git 3718. [bug] A missing ISC_LINK_INIT in log.c. [RT #35260] --- diff --git a/CHANGES b/CHANGES index 59d6a0bc8e2..cdc454756bd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3718. [bug] A missing ISC_LINK_INIT in log.c. [RT #35260] + 3717. [port] hpux: Treat EOPNOTSUPP as a expected error code when probing to see if it is possible to set dscp values on a per packet basis. [RT #35252] diff --git a/lib/isc/log.c b/lib/isc/log.c index 2cf584b44a6..986ed61352e 100644 --- a/lib/isc/log.c +++ b/lib/isc/log.c @@ -1633,6 +1633,7 @@ isc_log_doit(isc_log_t *lctx, isc_logcategory_t *category, TIME_NOW(&new->time); + ISC_LINK_INIT(new, link); ISC_LIST_APPEND(lctx->messages, new, link); }