diff options
Diffstat (limited to 'sysdeps/mach/hurd/getpriority.c')
-rw-r--r-- | sysdeps/mach/hurd/getpriority.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/getpriority.c b/sysdeps/mach/hurd/getpriority.c index 933592fe8e..3d7af4d3bb 100644 --- a/sysdeps/mach/hurd/getpriority.c +++ b/sysdeps/mach/hurd/getpriority.c @@ -41,9 +41,14 @@ getpriority (enum __priority_which which, int who) { int *oldpi = pi; unsigned int oldpisize = pisize; + char *tw = 0; + size_t twsz = 0; onerr = __USEPORT (PROC, __proc_getprocinfo (port, pid, PI_FETCH_TASKINFO, - &pi, &pisize)); + &pi, &pisize, + &tw, &twsz)); + if (twsz) + __vm_deallocate (__mach_task_self (), tw, twsz); if (pi != oldpi && oldpi != pibuf) /* Old buffer from last call was not reused; free it. */ __vm_deallocate (__mach_task_self (), |