Use string_file::release in some places
authorTom Tromey <tromey@adacore.com>
Thu, 21 Sep 2023 19:31:14 +0000 (13:31 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 26 Sep 2023 12:56:27 +0000 (06:56 -0600)
I found a few spots like:

    string_file f;
    std::string x = f.string ();

However, string_file::string returns a 'const std::string &'...  so it
seems to me that this must be copying the string (? I find it hard to
reason about this in C++).

This patch changes these spots to use release() instead, which moves
the string.

Reviewed-by: Keith Seitz <keiths@redhat.com>
Reviewed-by: Lancelot Six <lancelot.six@amd.com>
gdb/breakpoint.c
gdb/top.c

index d807ae3c9b5458f74cda8661ed9e7d1141d1ca90..f9b20a7d62d156a961113e8c2bf78755fa63b532 100644 (file)
@@ -7581,7 +7581,7 @@ bp_location::to_string () const
   string_file stb;
   ui_out_redirect_pop redir (current_uiout, &stb);
   print_breakpoint_location (this->owner, this);
-  return stb.string ();
+  return stb.release ();
 }
 
 /* Decrement reference count.  If the reference count reaches 0,
index 2322e55f1db4fdb6ed005609f5b894d92835578d..cbe14b0104664c450cf97d912230fb77244ed12d 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -647,12 +647,12 @@ execute_fn_to_string (std::string &res, std::function<void(void)> fn,
   catch (...)
     {
       /* Finally.  */
-      res = std::move (str_file.string ());
+      res = str_file.release ();
       throw;
     }
 
   /* And finally.  */
-  res = std::move (str_file.string ());
+  res = str_file.release ();
 }
 
 /* See gdbcmd.h.  */