Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/topic/timw/fix-cookie'
Browse files Browse the repository at this point in the history
* origin/topic/timw/fix-cookie:
  Avoid dereferencing cookie field that could intentionally be unset
  • Loading branch information
timwoj committed Dec 12, 2023
2 parents 02097a6 + 6cd85d5 commit 9eba4fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2.3.0-dev.61 | 2023-12-12 10:33:37 -0700

* Avoid dereferencing cookie field that could intentionally be unset

2.3.0-dev.59 | 2023-12-11 09:56:46 -0700

* Merge branch 'topic/timw/fix-timestamp-parsing'
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0-dev.59
2.3.0-dev.61
2 changes: 1 addition & 1 deletion src/io/zeek.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ void ZeekConnection::processEvent(const std::string& name, const std::vector<Val
.requires_tables = std::move(requires_tables),
.if_missing_tables = std::move(if_missing_tables),
.terminate = false,
.cookie = *cookie,
.cookie = cookie,
}};
} catch ( const std::exception& e ) {
unexpectedEventArguments(zeek_instance_id, name, args);
Expand Down

0 comments on commit 9eba4fb

Please sign in to comment.