[Git][NTPsec/ntpsec][master] 2 commits: In NEWS, add a fix notice.

Eric S. Raymond gitlab at mg.gitlab.com
Tue Jan 26 09:35:05 UTC 2016


Eric S. Raymond pushed to branch master at NTPsec / ntpsec


Commits:
736e8a0d by Eric S. Raymond at 2016-01-26T04:32:57-05:00
In NEWS, add a fix notice.

- - - - -
56630d41 by Eric S. Raymond at 2016-01-26T04:34:46-05:00
Fix a typo in a Coverity annotation.

- - - - -


2 changed files:

- NEWS
- libparse/ieee754io.c


Changes:

=====================================
NEWS
=====================================
--- a/NEWS
+++ b/NEWS
@@ -70,6 +70,10 @@ of filenames used in saveconfig commands. Saveconfig support is
 disabled at compile time in NTPsec and will not be re-enabled without
 much more extensive hardening.
 
+Other fixes:
+
+Coverity found a slow memory leak in the asynchronous-DNS code.
+
 == 2015-11-16: 0.9.0 ==
 
 Initial NTPsec beta release.


=====================================
libparse/ieee754io.c
=====================================
--- a/libparse/ieee754io.c
+++ b/libparse/ieee754io.c
@@ -491,7 +491,7 @@ put_ieee754(
 	      mantissa_high  = (outlfp.l_ui << (mbits - msb)) & ((1 << (mbits - 32)) - 1);
 	      mantissa_high |=  outlfp.l_uf >> (32 - (mbits - msb));
 	      mantissa_low   = (outlfp.l_ui & ((1 << (msb - mbits)) - 1)) << (32 - (msb - mbits));
-	      /* coverity[shift_negative] */
+	      /* coverity[negative_shift] */
 	      mantissa_low  |=  outlfp.l_uf >> (msb - mbits);
 	    }
 	  else



View it on GitLab: https://gitlab.com/NTPsec/ntpsec/compare/72dac9ed7435b3b34a4ac74676bb57d0e1ffd90c...56630d4119ffeddd356a937c449026161c3f384b
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.ntpsec.org/pipermail/vc/attachments/20160126/5cfcce14/attachment.html>


More information about the vc mailing list