From 4217c6bbf951aa05a8d2c01398b0a821c79039da Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Fri, 8 Jan 2021 13:43:57 +0000 Subject: [PATCH] Remove use of uninitialised variable --- sdrbase/pipes/elementpipesregistrations.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrbase/pipes/elementpipesregistrations.h b/sdrbase/pipes/elementpipesregistrations.h index 7004684d4..d1487d2f7 100644 --- a/sdrbase/pipes/elementpipesregistrations.h +++ b/sdrbase/pipes/elementpipesregistrations.h @@ -59,7 +59,7 @@ public: } else { - typeId++; + typeId = m_typeCount++; m_typeIds.insert(type, typeId); }