mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Fixing Coverity warning.
Addresses CID 1356116.
This commit is contained in:
parent
d195f1b047
commit
35686fb93a
3 changed files with 21 additions and 1 deletions
17
CHANGES
17
CHANGES
|
@ -1,4 +1,21 @@
|
|||
|
||||
2.4-579 | 2016-05-29 08:54:57 -0700
|
||||
|
||||
* Fixing Coverity warning. Addresses CID 1356116. (Robin Sommer)
|
||||
|
||||
* Fixing FTP cwd getting overlue long. (Robin Sommer)
|
||||
|
||||
* Clarifying notice documentation. Addresses BIT-1405. (Robin
|
||||
Sommer)
|
||||
|
||||
* Changing protocol_{confirmation,violation} events to queue like
|
||||
any other event. Addresses BIT-1530. (Robin Sommer)
|
||||
|
||||
* Normalizing test baseline. (Robin Sommer)
|
||||
|
||||
* Do not use scientific notations when printing doubles in logs.
|
||||
Addresses BIT-1558. (Robin Sommer)
|
||||
|
||||
2.4-573 | 2016-05-23 13:21:03 -0700
|
||||
|
||||
* Ignoring packets with negative timestamps. Addresses BIT-1562 and
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.4-573
|
||||
2.4-579
|
||||
|
|
|
@ -2288,8 +2288,11 @@ double TableVal::CallExpireFunc(Val* idx)
|
|||
Val* vf = expire_expr->Eval(0);
|
||||
|
||||
if ( ! vf )
|
||||
{
|
||||
// Will have been reported already.
|
||||
delete_vals(vl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ( vf->Type()->Tag() != TYPE_FUNC )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue