mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Fix a hard-to-spot bug.
This commit is contained in:
parent
3ba85567f4
commit
483cc6bd9e
1 changed files with 1 additions and 1 deletions
|
@ -1294,7 +1294,7 @@ bool OpaqueType::DoUnserialize(UnserialInfo* info)
|
||||||
{
|
{
|
||||||
DO_UNSERIALIZE(BroType);
|
DO_UNSERIALIZE(BroType);
|
||||||
char const* n;
|
char const* n;
|
||||||
if ( ! UNSERIALIZE_STR(&n, 0) );
|
if ( ! UNSERIALIZE_STR(&n, 0) )
|
||||||
return false;
|
return false;
|
||||||
name = n;
|
name = n;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue