mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 20:48:21 +00:00
Deprecate ComputeHash(Val*) methods, replace with ComputeHash(Val&)
This commit is contained in:
parent
e5f66cd2e6
commit
e01d2c1b37
9 changed files with 29 additions and 22 deletions
|
@ -1248,7 +1248,7 @@ int Manager::SendEntryTable(Stream* i, const Value* const *vals)
|
|||
oldval = stream->tab->Lookup(idxval, false);
|
||||
}
|
||||
|
||||
HashKey* k = stream->tab->ComputeHash(idxval);
|
||||
HashKey* k = stream->tab->ComputeHash(*idxval);
|
||||
if ( ! k )
|
||||
reporter->InternalError("could not hash");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue