mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
GH-2009: Use auto to fix ZIP analyzer failure on some platforms
This commit is contained in:
parent
aa8f11fa17
commit
ffb9ba1f26
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ void ZIP_Analyzer::DeliverStream(int len, const u_char* data, bool orig)
|
|||
zip->next_in = (Bytef*)data;
|
||||
zip->avail_in = len;
|
||||
|
||||
Bytef* orig_next_in = zip->next_in;
|
||||
auto orig_next_in = zip->next_in;
|
||||
size_t orig_avail_in = zip->avail_in;
|
||||
|
||||
while ( true )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue