From 4cb234862c7ac8f325b486a18e0c962d6da4d708 Mon Sep 17 00:00:00 2001
From: Wayne Stambaugh <stambaughw@gmail.com>
Date: Wed, 19 Mar 2025 12:07:05 -0400
Subject: [PATCH] Fix Coverity issue #542006.

https://scan8.scan.coverity.com/#/project-view/22886/10844?selectedIssue=542006
---
 common/eda_item.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/common/eda_item.cpp b/common/eda_item.cpp
index f227aaea09..4f913dfd19 100644
--- a/common/eda_item.cpp
+++ b/common/eda_item.cpp
@@ -61,7 +61,8 @@ EDA_ITEM::EDA_ITEM( const EDA_ITEM& base ) :
         m_structType( base.m_structType ),
         m_flags( base.m_flags ),
         m_parent( base.m_parent ),
-        m_forceVisible( base.m_forceVisible )
+        m_forceVisible( base.m_forceVisible ),
+        m_isRollover( false )
 {
     SetForcedTransparency( base.GetForcedTransparency() );
 }