Bug#769225: patch
ZenWalker
scow at riseup.net
Thu Sep 24 18:19:33 UTC 2015
Dear maintainer, please apply this patch that solves the bug:
diff --git a/src/fr-command-unarchiver.c b/src/fr-command-unarchiver.c
index 27d3382..714bf29 100644
--- a/src/fr-command-unarchiver.c
+++ b/src/fr-command-unarchiver.c
@@ -205,8 +205,13 @@ fr_command_unarchiver_extract (FrCommand *comm,
fr_process_add_arg (comm->process, comm->filename);
- for (scan = file_list; scan; scan = scan->next)
- fr_process_add_arg (comm->process, scan->data);
+ for (scan = file_list; scan; scan = scan->next) {
+ char *escaped;
+
+ escaped = _g_str_escape (scan->data, "[");
+ fr_process_add_arg (comm->process, escaped);
+ g_free (escaped);
+ }
fr_process_end_command (comm->process);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: parchechar.patch
Type: text/x-diff
Size: 639 bytes
Desc: not available
URL: <http://lists.alioth.debian.org/pipermail/pkg-gnome-maintainers/attachments/20150924/b277cfa5/attachment.patch>
More information about the pkg-gnome-maintainers
mailing list