Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] add-inferior: expand tilde in -exec FILENAME argument
@ 2013-02-28 15:44 Sanimir Agovic
  2013-02-28 15:54 ` Pedro Alves
  0 siblings, 1 reply; 4+ messages in thread
From: Sanimir Agovic @ 2013-02-28 15:44 UTC (permalink / raw)
  To: gdb-patches

I could not come up with a solid testcase, hints are welcome.

2013-02-28  Sanimir Agovic  <sanimir.agovic@intel.com>

	* inferior.c: Include "readline/readline.h".
	(add_inferior_command): Tilde expand filename.

Signed-off-by: Sanimir Agovic <sanimir.agovic@intel.com>
---
 gdb/inferior.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gdb/inferior.c b/gdb/inferior.c
index ed6b626..abf0afa 100644
--- a/gdb/inferior.c
+++ b/gdb/inferior.c
@@ -35,6 +35,7 @@
 #include "continuations.h"
 #include "arch-utils.h"
 #include "target-descriptions.h"
+#include "readline/readline.h"
 
 void _initialize_inferiors (void);
 
@@ -850,7 +851,8 @@ add_inferior_command (char *args, int from_tty)
 		  ++argv;
 		  if (!*argv)
 		    error (_("No argument to -exec"));
-		  exec = *argv;
+		  exec = tilde_expand (*argv);
+		  make_cleanup (xfree, exec);
 		}
 	    }
 	  else
-- 
1.7.11.7


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-05-30  9:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-28 15:44 [PATCH] add-inferior: expand tilde in -exec FILENAME argument Sanimir Agovic
2013-02-28 15:54 ` Pedro Alves
2013-02-28 17:20   ` Agovic, Sanimir
2013-05-30  9:25     ` Pedro Alves

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox