mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 02:28:21 +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);
|
||||
char const* n;
|
||||
if ( ! UNSERIALIZE_STR(&n, 0) );
|
||||
if ( ! UNSERIALIZE_STR(&n, 0) )
|
||||
return false;
|
||||
name = n;
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue