<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> </div>
<div>  } else {</div>
<div>    lo = 1;</div>
<div>    for (i = 0; i < (int) TYPE_BIT(time_t) - 1; ++i)</div>
<div>      lo *= 2;</div>
<div>    hi = -(lo + 1);</div>
<div>  }</div>
<div> </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> </div>
<div>- Jörg</div>
<div> </div>
<div> </div>
</span></font>
</body>
</html>