diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-01 01:07:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-01 01:07:56 +0100 |
commit | e27192e20712a269aef8e997ceeaa02109292c8b (patch) | |
tree | 485b18648e094c556d7010ab6ec3547dcbd52b4f /proc | |
parent | cad3bc5890ecd2d911d6f063a42ef48d08f98918 (diff) | |
download | hurd-e27192e20712a269aef8e997ceeaa02109292c8b.tar.gz hurd-e27192e20712a269aef8e997ceeaa02109292c8b.tar.bz2 hurd-e27192e20712a269aef8e997ceeaa02109292c8b.zip |
proc: Fix missing free
On MACH_SEND_TIMED_OUT we defer sending the message to just-created
thread, we allocate a copy of the message to that end. We need to free
that once the message is indeed sent.
Diffstat (limited to 'proc')
-rw-r--r-- | proc/stubs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proc/stubs.c b/proc/stubs.c index ea0ae7a6..dc621ba1 100644 --- a/proc/stubs.c +++ b/proc/stubs.c @@ -67,6 +67,7 @@ blocking_message_send (void *arg) break; } + free (req); return 0; } |