mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
hurd: Fix timer/clock_getres crash on NULL res parameter
POSIX allows res to be NULL.
This commit is contained in:
parent
2c040d0b90
commit
67ca1c5560
@ -34,8 +34,11 @@ realtime_getres (struct timespec *res)
|
||||
/* This implementation assumes that the realtime clock has a
|
||||
resolution higher than 1 second. This is the case for any
|
||||
reasonable implementation. */
|
||||
res->tv_sec = 0;
|
||||
res->tv_nsec = 1000000000 / clk_tck;
|
||||
if (res)
|
||||
{
|
||||
res->tv_sec = 0;
|
||||
res->tv_nsec = 1000000000 / clk_tck;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user