Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117886
b: refs/heads/master
c: 77e5571
h: refs/heads/master
v: v3
  • Loading branch information
Jay Fenlason authored and Stefan Richter committed Oct 26, 2008
1 parent 243c2fa commit ffb26a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4f9740d4f5a17fa6a1b097fa3ccdfb7246660307
refs/heads/master: 77e557191701afa55ae7320d42ad6458a2ad292e
6 changes: 4 additions & 2 deletions trunk/drivers/firewire/fw-topology.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static void
update_tree(struct fw_card *card, struct fw_node *root)
{
struct list_head list0, list1;
struct fw_node *node0, *node1;
struct fw_node *node0, *node1, *next1;
int i, event;

INIT_LIST_HEAD(&list0);
Expand Down Expand Up @@ -485,7 +485,9 @@ update_tree(struct fw_card *card, struct fw_node *root)
}

node0 = fw_node(node0->link.next);
node1 = fw_node(node1->link.next);
next1 = fw_node(node1->link.next);
fw_node_put(node1);
node1 = next1;
}
}

Expand Down

0 comments on commit ffb26a2

Please sign in to comment.