diff options
author | prspkt <prspkt@protonmail.com> | 2019-11-03 15:34:59 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-03 11:53:46 -0300 |
commit | e21011be383e003a96ac4ec35522bcd5cccd0a8e (patch) | |
tree | 489b24dc6a87e69fae35b09bd65c9842dd2ac007 /community/xfburn/fix_empty_dir_segfault.patch | |
parent | a9c2e74d38005132f3d2c16c3d6f969973559fcf (diff) | |
download | aports-e21011be383e003a96ac4ec35522bcd5cccd0a8e.tar.bz2 aports-e21011be383e003a96ac4ec35522bcd5cccd0a8e.tar.xz |
community/xfburn: use https
Remove unused patches and configuration options.
Diffstat (limited to 'community/xfburn/fix_empty_dir_segfault.patch')
-rw-r--r-- | community/xfburn/fix_empty_dir_segfault.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/community/xfburn/fix_empty_dir_segfault.patch b/community/xfburn/fix_empty_dir_segfault.patch deleted file mode 100644 index 93418ae413..0000000000 --- a/community/xfburn/fix_empty_dir_segfault.patch +++ /dev/null @@ -1,48 +0,0 @@ ---- ./xfburn/xfburn-data-composition.c 2011-02-17 16:37:03.000000000 +0100 -+++ ./xfburn/xfburn-data-composition_patched.c 2011-02-17 16:40:40.000000000 +0100 -@@ -1874,26 +1874,29 @@ - g_error ("Failed adding %s as a node to the image: code %X!", src, r); - } - -- basename = g_path_get_basename (src); -+ /* Check names only for items not manually created (#613563) */ -+ if (type != DATA_COMPOSITION_TYPE_DIRECTORY || src != NULL) { -+ basename = g_path_get_basename (src); -+ -+ /* check if the file has been renamed */ -+ if (strcmp (basename, name) != 0) { -+ /* rename the iso_node */ -+ r = iso_node_set_name (node, name); -+ -+ if (r == 0) { -+ /* The first string is the renamed name, the second one the original name */ -+ xfce_warn (_("Duplicate filename '%s' for '%s'"), name, src); -+ -+ g_free (basename); -+ g_free (name); -+ g_free (src); - -- /* check if the file has been renamed */ -- if (strcmp (basename, name) != 0) { -- /* rename the iso_node */ -- r = iso_node_set_name (node, name); -- -- if (r == 0) { -- /* The first string is the renamed name, the second one the original name */ -- xfce_warn (_("Duplicate filename '%s' for '%s'"), name, src); -- -- g_free (basename); -- g_free (name); -- g_free (src); -- -- continue; -+ continue; -+ } - } -+ g_free (basename); - } - -- g_free (basename); - g_free (name); - g_free (src); - |