mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 13:08:20 +00:00
Fix uninitialized variable warning
This commit is contained in:
parent
c786dc8f48
commit
9834793386
1 changed files with 2 additions and 2 deletions
|
@ -296,8 +296,8 @@ ValPtr ZBody::DoExec(Frame* f, int start_pc, StmtFlowType& flow)
|
|||
auto& z = insts[pc];
|
||||
|
||||
#ifdef DEBUG
|
||||
int profile_pc;
|
||||
double profile_CPU;
|
||||
int profile_pc = 0;
|
||||
double profile_CPU = 0.0;
|
||||
|
||||
if ( do_profile )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue