Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ddi/irq.c

    ra35b458 r30f1a25  
    141141{
    142142        irq_spinlock_lock(l, false);
    143         for (ht_link_t *lnk = hash_table_find(h, &inr); lnk;
    144             lnk = hash_table_find_next(h, lnk)) {
     143        ht_link_t *first = hash_table_find(h, &inr);
     144        for (ht_link_t *lnk = first; lnk;
     145            lnk = hash_table_find_next(h, first, lnk)) {
    145146                irq_t *irq = hash_table_get_inst(lnk, irq_t, link);
    146147                irq_spinlock_lock(&irq->lock, false);
Note: See TracChangeset for help on using the changeset viewer.