Skip to content

Commit 7953b56

Browse files
committed
std: fix registering of Windows TLS destructors
1 parent b18990b commit 7953b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/windows/thread_local_key.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ unsafe fn run_keyless_dtors() {
4242
// the case that this loop always terminates because we provide the
4343
// guarantee that a TLS key cannot be set after it is flagged for
4444
// destruction.
45-
while let Some((ptr, dtor)) = DESTRUCTORS.borrow_mut().pop() {
45+
while let Some((ptr, dtor)) = { DESTRUCTORS.borrow_mut().pop() } {
4646
(dtor)(ptr);
4747
}
4848
// We're done so free the memory.

0 commit comments

Comments
 (0)