mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix an "uninitialized" compiler warning
Though it is actually initialized on all non-aborting code paths.
This commit is contained in:
parent
e6042940dc
commit
7126616707
3 changed files with 9 additions and 2 deletions
7
CHANGES
7
CHANGES
|
@ -1,4 +1,11 @@
|
|||
|
||||
2.5-815 | 2018-08-06 17:07:56 -0500
|
||||
|
||||
* Fix an "uninitialized" compiler warning (Jon Siwek, Corelight)
|
||||
|
||||
* Fix (non)suppression of proxy-bound events in known-*.bro scripts
|
||||
(Jon Siwek, Corelight)
|
||||
|
||||
2.5-811 | 2018-08-03 11:33:57 -0500
|
||||
|
||||
* Update scripts to use vector "+=" append operation (Vern Paxson, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.5-811
|
||||
2.5-815
|
||||
|
|
|
@ -882,7 +882,7 @@ Val* BinaryExpr::SetFold(Val* v1, Val* v2) const
|
|||
TableVal* tv1 = v1->AsTableVal();
|
||||
TableVal* tv2 = v2->AsTableVal();
|
||||
TableVal* result;
|
||||
bool res;
|
||||
bool res = false;
|
||||
|
||||
switch ( tag ) {
|
||||
case EXPR_AND:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue