glsl: Use typed foreach_in_list_safe instead of foreach_list_safe.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
@@ -229,15 +229,13 @@ public:
|
||||
static void
|
||||
destroy_links(exec_list *list, function *f)
|
||||
{
|
||||
foreach_list_safe(node, list) {
|
||||
struct call_node *n = (struct call_node *) node;
|
||||
|
||||
foreach_in_list_safe(call_node, node, list) {
|
||||
/* If this is the right function, remove it. Note that the loop cannot
|
||||
* terminate now. There can be multiple links to a function if it is
|
||||
* either called multiple times or calls multiple times.
|
||||
*/
|
||||
if (n->func == f)
|
||||
n->remove();
|
||||
if (node->func == f)
|
||||
node->remove();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user