mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
Fixing serialization bug introduced during earlier merge.
This commit is contained in:
parent
b97e045c9a
commit
c11bf3d922
5 changed files with 23 additions and 23 deletions
|
@ -183,11 +183,11 @@ bool CounterVector::DoUnserialize(UnserialInfo* info)
|
|||
if ( ! bits )
|
||||
return false;
|
||||
|
||||
uint64 width;
|
||||
if ( ! UNSERIALIZE(&width) )
|
||||
uint64 w;
|
||||
if ( ! UNSERIALIZE(&w) )
|
||||
return false;
|
||||
|
||||
width = static_cast<size_t>(width);
|
||||
width = static_cast<size_t>(w);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue