mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Fix a reference counting bug in ListVal ctor.
This commit is contained in:
parent
f7c2c00045
commit
bfaa082aee
3 changed files with 10 additions and 4 deletions
|
@ -613,7 +613,13 @@ extern OpaqueType* bloomfilter_type;
|
|||
extern OpaqueType* x509_opaque_type;
|
||||
|
||||
// Returns the BRO basic (non-parameterized) type with the given type.
|
||||
extern BroType* base_type(TypeTag tag);
|
||||
// The reference count of the type is not increased.
|
||||
BroType* base_type_no_ref(TypeTag tag);
|
||||
|
||||
// Returns the BRO basic (non-parameterized) type with the given type.
|
||||
// The caller assumes responsibility for a reference to the type.
|
||||
inline BroType* base_type(TypeTag tag)
|
||||
{ return base_type_no_ref(tag)->Ref(); }
|
||||
|
||||
// Returns the BRO basic error type.
|
||||
inline BroType* error_type() { return base_type(TYPE_ERROR); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue