mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Fixing (very unlikely) double delete in HTTP analyzer when decapsulating
CONNECTs. BIT-1149 #closed
This commit is contained in:
parent
ff261ea626
commit
00755f1e40
1 changed files with 1 additions and 4 deletions
|
@ -1085,11 +1085,8 @@ void HTTP_Analyzer::DeliverStream(int len, const u_char* data, bool is_orig)
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
// AddChildAnalyzer() will have deleted PIA.
|
||||||
// Shouldn't really happen.
|
|
||||||
delete pia;
|
|
||||||
pia = 0;
|
pia = 0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
InitHTTPMessage(content_line,
|
InitHTTPMessage(content_line,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue