Silence ARI for valid calls to abort
[deliverable/binutils-gdb.git] / gdb / charset.c
index 7568e47cf9ab436bf2c28bbaecfd7a99ed393801..a93fe99c41fa78a54550548e346966d73c474480 100644 (file)
@@ -816,10 +816,9 @@ find_charset_names (void)
 
 #ifdef ICONV_BIN
   {
-    char *iconv_dir = relocate_gdb_directory (ICONV_BIN,
-                                             ICONV_BIN_RELOCATABLE);
-    iconv_program = concat (iconv_dir, SLASH_STRING, "iconv", NULL);
-    xfree (iconv_dir);
+    std::string iconv_dir = relocate_gdb_directory (ICONV_BIN,
+                                                   ICONV_BIN_RELOCATABLE);
+    iconv_program = concat (iconv_dir.c_str(), SLASH_STRING, "iconv", NULL);
   }
 #else
   iconv_program = xstrdup ("iconv");
This page took 0.026687 seconds and 4 git commands to generate.