mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 13:38:19 +00:00
analyzer: Replace nulls with nullptr
This commit is contained in:
parent
cb01e098df
commit
6897912909
54 changed files with 305 additions and 307 deletions
|
@ -7,7 +7,7 @@ using namespace analyzer::zip;
|
|||
ZIP_Analyzer::ZIP_Analyzer(Connection* conn, bool orig, Method arg_method)
|
||||
: tcp::TCP_SupportAnalyzer("ZIP", conn, orig)
|
||||
{
|
||||
zip = 0;
|
||||
zip = nullptr;
|
||||
zip_status = Z_OK;
|
||||
method = arg_method;
|
||||
|
||||
|
@ -26,7 +26,7 @@ ZIP_Analyzer::ZIP_Analyzer(Connection* conn, bool orig, Method arg_method)
|
|||
{
|
||||
Weird("inflate_init_failed");
|
||||
delete zip;
|
||||
zip = 0;
|
||||
zip = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue