gprofng: fix -Wuse-after-free warning
authorVladimir Mezentsev <vladimir.mezentsev@oracle.com>
Thu, 14 Dec 2023 01:52:15 +0000 (17:52 -0800)
committerVladimir Mezentsev <vladimir.mezentsev@oracle.com>
Thu, 14 Dec 2023 19:10:40 +0000 (11:10 -0800)
Removed incorrect unnecessary code.

gprofng/ChangeLog
2023-12-13  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>

* src/collctrl.cc (set_synctrace): Fix -Wuse-after-free warning.

gprofng/src/collctrl.cc

index 5d68b68..aeff5a0 100644 (file)
@@ -1081,10 +1081,6 @@ Coll_Ctrl::set_synctrace (const char *string)
   if (*endchar != 0 || tval < 0)
     {
       free (val);
-      /* invalid setting */
-      /* restore the comma, if it was zeroed out */
-      if (comma_p != NULL)
-       *comma_p = ',';
       return dbe_sprintf (GTXT ("Unrecognized synchronization tracing threshold `%s'\n"), string);
     }
   free (val);