mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
file_analysis: Replace nulls with nullptr
This commit is contained in:
parent
6897912909
commit
393b8353cb
14 changed files with 52 additions and 52 deletions
|
@ -24,7 +24,7 @@ file_analysis::Analyzer* DataEvent::Instantiate(RecordVal* args, File* file)
|
|||
auto chunk_val = args->Lookup("chunk_event");
|
||||
auto stream_val = args->Lookup("stream_event");
|
||||
|
||||
if ( ! chunk_val && ! stream_val ) return 0;
|
||||
if ( ! chunk_val && ! stream_val ) return nullptr;
|
||||
|
||||
EventHandlerPtr chunk;
|
||||
EventHandlerPtr stream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue