mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +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];
|
auto& z = insts[pc];
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
int profile_pc;
|
int profile_pc = 0;
|
||||||
double profile_CPU;
|
double profile_CPU = 0.0;
|
||||||
|
|
||||||
if ( do_profile )
|
if ( do_profile )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue