Skip to content

Commit

Permalink
Merge branch 'bugfix/rtc_isr_deregister_memory_leak' into 'master'
Browse files Browse the repository at this point in the history
bugfix/memory leak in rtc_isr_deregister

See merge request idf/esp-idf!2754
  • Loading branch information
projectgus committed Jul 12, 2018
2 parents 1b1477d + 882b50d commit cfb3759
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/driver/rtc_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -1983,6 +1983,7 @@ esp_err_t rtc_isr_deregister(intr_handler_t handler, void* handler_arg)
SLIST_REMOVE_AFTER(prev, next);
}
found = true;
free(it);
break;
}
prev = it;
Expand Down

0 comments on commit cfb3759

Please sign in to comment.