From c37193f884c3a1989678c324d191d75cf905a383 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 17 Nov 2015 16:05:06 +0200 Subject: [PATCH] BareMetal: Fix cloning of GDB server providers Change-Id: Ie063ce3ab2caf5cf2ee709236db891e22bb9cc8b Reviewed-by: Denis Shienkov Reviewed-by: Tim Sander Reviewed-by: Tobias Hunger --- src/plugins/baremetal/gdbserverprovider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/baremetal/gdbserverprovider.cpp b/src/plugins/baremetal/gdbserverprovider.cpp index 5f32c7efbf2..cdb88987d45 100644 --- a/src/plugins/baremetal/gdbserverprovider.cpp +++ b/src/plugins/baremetal/gdbserverprovider.cpp @@ -67,7 +67,7 @@ GdbServerProvider::GdbServerProvider(const QString &id) } GdbServerProvider::GdbServerProvider(const GdbServerProvider &other) - : m_id(other.m_id) + : m_id(createId(other.m_id)) , m_startupMode(other.m_startupMode) , m_initCommands(other.m_initCommands) , m_resetCommands(other.m_resetCommands)