<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri" size="2"><span style="font-size:11pt;">
<div>In time2sub() there is this code:</div>
<div>&nbsp;</div>
<div>&nbsp; } else {</div>
<div>&nbsp;&nbsp;&nbsp; lo = 1;</div>
<div>&nbsp;&nbsp;&nbsp; for (i = 0; i &lt; (int) TYPE_BIT(time_t) - 1; &#43;&#43;i)</div>
<div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lo *= 2;</div>
<div>&nbsp;&nbsp;&nbsp; hi = -(lo &#43; 1);</div>
<div>&nbsp; }</div>
<div>&nbsp;</div>
<div>The last *= 2 will overflow a signed integer time_t. This can be fixed with “lo = -1” instead of “lo = 1”. </div>
<div>This change seems to be consistent with the variable names.</div>
<div>&nbsp;</div>
<div>- Jörg</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
</span></font>
</body>
</html>