From 9aea04fe22197009173ae1587645bdfa95251aaf Mon Sep 17 00:00:00 2001 From: Christian Beer Date: Wed, 21 Oct 2015 16:57:18 +0200 Subject: [PATCH] initialize field in constructor fixes CID 28002 found by Coverity --- sched/sched_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sched/sched_types.h b/sched/sched_types.h index 52ab5e6e8d..999acbb199 100644 --- a/sched/sched_types.h +++ b/sched/sched_types.h @@ -182,6 +182,7 @@ struct BEST_APP_VERSION { // get the HOST_APP_VERSION, if any BEST_APP_VERSION() { + appid = 0; present = false; cavp = NULL; avp = NULL;