Ver Fonte

Make sure each delayed link entry is visited once

* src/extract.c (create_placeholder_file): Use FLEXNSIZEOF (overlooked
by c542d3d0c8)
(apply_delayed_links): Don't follow the "next" chain after its entries
have been applied.
Sergey Poznyakoff há 1 ano atrás
pai
commit
826c5eb64e
1 ficheiros alterados com 21 adições e 16 exclusões
  1. 21 16
      src/extract.c

+ 21 - 16
src/extract.c

@@ -1441,9 +1441,8 @@ create_placeholder_file (char *file_name, bool is_symlink, bool *interdir_made,
     {
       struct delayed_set_stat *h;
       struct delayed_link *p =
-	xmalloc (offsetof (struct delayed_link, target)
-		 + strlen (current_stat_info.link_name)
-		 + 1);
+	xmalloc (FLEXNSIZEOF (struct delayed_link, target,
+			      strlen (current_stat_info.link_name) + 1));
       if (prev)
 	{
 	  p->next = prev->next;
@@ -1950,19 +1949,25 @@ apply_delayed_links (void)
   if (!delayed_link_table)
     return;
 
-  for (struct delayed_link *dl = hash_get_first (delayed_link_table);
-       dl;
-       dl = dl->next ? dl->next : hash_get_next (delayed_link_table, dl))
-    if (!dl->has_predecessor)
-      {
-	struct delayed_link *ds = dl;
-	do
-	  {
-	    apply_delayed_link (ds);
-	    ds = ds->next;
-	  }
-	while (ds);
-      }
+  for (struct delayed_link *dl = hash_get_first (delayed_link_table); dl;)
+    {
+      struct delayed_link *ds = dl;
+      if (!ds->has_predecessor)
+	{
+	  do
+	    {
+	      apply_delayed_link (ds);
+	      ds = ds->next;
+	    }
+	  while (ds);
+	}
+      else if (dl->next)
+	{
+	  dl = dl->next;
+	  continue;
+	}
+      dl = hash_get_next (delayed_link_table, dl);
+    }
 
   if (false)
     {