From a5b945f8f577ec744d8d8e82ec1b19c781da94e8 Mon Sep 17 00:00:00 2001 From: Cary R Date: Sun, 26 Nov 2017 20:24:58 -0800 Subject: [PATCH] Initialize the t0 trigger value to false. --- net_event.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net_event.cc b/net_event.cc index 1aa967859..f384ffccf 100644 --- a/net_event.cc +++ b/net_event.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000-2013 Stephen Williams (steve@icarus.com) + * Copyright (c) 2000-2017 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -345,7 +345,7 @@ void NetEvProbe::find_similar_probes(list&plist) } NetEvWait::NetEvWait(NetProc*pr) -: statement_(pr) +: statement_(pr), has_t0_trigger_(false) { }