summaryrefslogtreecommitdiff
path: root/src/thread/cancellation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/cancellation.c')
-rw-r--r--src/thread/cancellation.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/thread/cancellation.c b/src/thread/cancellation.c
index 967705a9..23d23d14 100644
--- a/src/thread/cancellation.c
+++ b/src/thread/cancellation.c
@@ -11,6 +11,7 @@ void _pthread_cleanup_push(struct __ptcb *cb, void (*f)(void *), void *x)
void _pthread_cleanup_pop(struct __ptcb *cb, int run)
{
__do_cleanup_pop(cb, run);
+ if (run) cb->__f(cb->__x);
}
static void dummy()