From d0ac88186d39e6ae2650843acb40cbbed239b170 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 26 May 2010 02:32:19 +0000 Subject: If dumpcap exits abnormally, report the error. svn path=/trunk/; revision=32964 --- capture_sync.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'capture_sync.c') diff --git a/capture_sync.c b/capture_sync.c index a66aff4b18..6e4d052c8a 100644 --- a/capture_sync.c +++ b/capture_sync.c @@ -1434,7 +1434,6 @@ sync_pipe_input_cb(gint source, gpointer user_data) else primary_msg = g_strdup("Error reading from sync pipe"); } - g_free(primary_msg); /* XXX - display this */ /* No more child process. */ capture_opts->fork_child = -1; @@ -1442,7 +1441,8 @@ sync_pipe_input_cb(gint source, gpointer user_data) #ifdef _WIN32 ws_close(capture_opts->signal_pipe_write_fd); #endif - capture_input_closed(capture_opts); + capture_input_closed(capture_opts, primary_msg); + g_free(primary_msg); return FALSE; } -- cgit v1.2.1