Browse Source

fix double memory release

Semyon Verchenko 8 years ago
parent
commit
46a836dadc
1 changed files with 0 additions and 2 deletions
  1. 0 2
      irq.c

+ 0 - 2
irq.c

@@ -91,8 +91,6 @@ int irq_list_free(lub_list_t *irqs)
 		irq_t *irq;
 		irq = (irq_t *)lub_list_node__get_data(iter);
 		irq_free(irq);
-		cpus_free(irq->local_cpus);
-		cpus_free(irq->affinity);
 		lub_list_del(irqs, iter);
 		lub_list_node_free(iter);
 	}