Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/darwin/dispatch_queue_event_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,9 @@ static void s_scheduled_iteration_entry_destroy(struct scheduled_iteration_entry
return;
}

s_dispatch_loop_release(entry->dispatch_loop);
struct aws_dispatch_loop *dispatch_loop_for_release = entry->dispatch_loop;
aws_mem_release(entry->allocator, entry);
s_dispatch_loop_release(dispatch_loop_for_release);
}

/* Manually called to destroy an aws_event_loop */
Expand Down
Loading