From 5b1b13282aadc01ddb7c9b5d8e8e147093b41428 Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Mon, 6 Oct 2025 00:24:23 -0500 Subject: [PATCH 1/2] Fix typo in launchmon_base_t assignment operator This was found with gcc-15's -Wtemplate-body. --- launchmon/src/sdbg_base_launchmon_impl.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launchmon/src/sdbg_base_launchmon_impl.hxx b/launchmon/src/sdbg_base_launchmon_impl.hxx index a794d7c..3ac033d 100644 --- a/launchmon/src/sdbg_base_launchmon_impl.hxx +++ b/launchmon/src/sdbg_base_launchmon_impl.hxx @@ -104,7 +104,7 @@ launchmon_base_t FE_sockfd = rhs.FE_sockfd; API_mode = rhs.API_mode; last_seen = rhs.last_seen; - warm_period = rhs.iwarm_period; + warm_period = rhs.warm_period; // // This should actually never be called // From 4d5fe135b18546b9019f7dcaada7fb476cbea8c1 Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Mon, 6 Oct 2025 00:47:15 -0500 Subject: [PATCH 2/2] Use 'base_image_name' in image_base_t copy ctor --- launchmon/src/sdbg_base_symtab_impl.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launchmon/src/sdbg_base_symtab_impl.hxx b/launchmon/src/sdbg_base_symtab_impl.hxx index ae9afb6..64f7d2a 100644 --- a/launchmon/src/sdbg_base_symtab_impl.hxx +++ b/launchmon/src/sdbg_base_symtab_impl.hxx @@ -179,7 +179,7 @@ template image_base_t::image_base_t( const image_base_t &im) { base_image_name = im.base_image_name; - path = im.base_path_name; + path = im.base_image_name; // // We are not copying linkage_symtab and debug_symtab // because of our use of std::map.