[file-roller] removed wrong call to fr_process_start



commit 1b1b0e719d39b0edd4fa6a91ade14ca69b9c0222
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Mon Jun 18 11:22:53 2012 +0200

    removed wrong call to fr_process_start

 src/fr-command-cpio.c |    3 +--
 src/fr-command-dpkg.c |    2 --
 src/fr-command-iso.c  |    2 --
 src/fr-command-rpm.c  |    1 -
 4 files changed, 1 insertions(+), 7 deletions(-)
---
diff --git a/src/fr-command-cpio.c b/src/fr-command-cpio.c
index 32d3bd4..b90d7ff 100644
--- a/src/fr-command-cpio.c
+++ b/src/fr-command-cpio.c
@@ -197,7 +197,7 @@ fr_command_cpio_extract (FrCommand *comm,
 	if (dest_dir != NULL)
                 fr_process_set_working_dir (comm->process, dest_dir);
 	fr_process_add_arg (comm->process, "-c");
-	
+
 	cmd = g_string_new ("cpio -idu --no-absolute-filenames ");
 	for (scan = file_list; scan; scan = scan->next) {
 		char *filepath = scan->data;
@@ -218,7 +218,6 @@ fr_command_cpio_extract (FrCommand *comm,
 	g_string_free (cmd, TRUE);
 
 	fr_process_end_command (comm->process);
-	fr_process_start (comm->process);
 }
 
 
diff --git a/src/fr-command-dpkg.c b/src/fr-command-dpkg.c
index b0ed7c5..22e68dd 100644
--- a/src/fr-command-dpkg.c
+++ b/src/fr-command-dpkg.c
@@ -203,8 +203,6 @@ fr_command_dpkg_extract (FrCommand  *comm,
         fr_process_add_arg (comm->process, "-e");
         fr_process_add_arg (comm->process, comm->filename);
         fr_process_end_command (comm->process);
-
-        fr_process_start (comm->process);
 }
 
 
diff --git a/src/fr-command-iso.c b/src/fr-command-iso.c
index c64653e..3ad7463 100644
--- a/src/fr-command-iso.c
+++ b/src/fr-command-iso.c
@@ -195,8 +195,6 @@ fr_command_iso_extract (FrCommand  *comm,
 
 		g_free (temp_dest_dir);
 	}
-
-	fr_process_start (comm->process);
 }
 
 
diff --git a/src/fr-command-rpm.c b/src/fr-command-rpm.c
index 29bcd01..81574b0 100644
--- a/src/fr-command-rpm.c
+++ b/src/fr-command-rpm.c
@@ -219,7 +219,6 @@ fr_command_rpm_extract (FrCommand  *comm,
 	g_string_free (cmd, TRUE);
 
 	fr_process_end_command (comm->process);
-	fr_process_start (comm->process);
 }
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]