[geany/geany-plugins] 034945: Merge pull request #174 from b4n/debugger/gdb77

Frank Lanitz git-noreply at xxxxx
Thu Feb 19 10:09:58 UTC 2015


Branch:      refs/heads/master
Author:      Frank Lanitz <frank at frank.uvena.de>
Committer:   Frank Lanitz <frank at frank.uvena.de>
Date:        Thu, 19 Feb 2015 10:09:58 UTC
Commit:      034945a07e4b9b7ab30ae589c909852dddc1deb6
             https://github.com/geany/geany-plugins/commit/034945a07e4b9b7ab30ae589c909852dddc1deb6

Log Message:
-----------
Merge pull request #174 from b4n/debugger/gdb77

debugger: Fix crash with GDB 7.7


Modified Paths:
--------------
    debugger/src/dbm_gdb.c

Modified: debugger/src/dbm_gdb.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -369,7 +369,7 @@ static gboolean on_read_async_output(GIOChannel * src, GIOCondition cond, gpoint
 				update_files();
 
 				/* -exec-run */
-				exec_async_command("-exec-run &");
+				exec_async_command("-exec-run");
 			}
 		}
 		else
@@ -895,7 +895,7 @@ static gboolean run(const gchar* file, const gchar* commandline, GList* env, GLi
 static void restart(void)
 {
 	dbg_cbs->clear_messages();
-	exec_async_command("-exec-run &");
+	exec_async_command("-exec-run");
 }
 	
 /*



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list