[28182] _TIME_BITS=64 in C++ has issues with fcntl, ioctl, prctl
[28223] mips: clone does not align stack
[28310] Do not use affinity mask for sysconf (_SC_NPROCESSORS_CONF)
+ [28338] undefined behavior in __tzfile_compute with oddball TZif file
[28340] ld.so crashes while loading a DSO with a read-only dynamic section
[28357] deadlock between pthread_create and ELF constructors
[28361] nptl: Avoid setxid deadlock with blocked signals in thread exit
[28407] pthread_kill assumes that kill and tgkill are equivalent
[28524] Conversion from ISO-2022-JP-3 with iconv may emit spurious NULs
- [28607] Masked signals are delivered on thread exit
[28532] powerpc64[le]: CFI for assembly templated syscalls is incorrect
+ [28607] Masked signals are delivered on thread exit
[28678] nptl/tst-create1 hangs sporadically
[28700] "dns [!UNAVAIL=return] files" NSS default for hosts is not useful
[28702] RISC-V: clone does not align stack
*leap_correct = leaps[i].change;
if (timer == leaps[i].transition /* Exactly at the transition time. */
- && ((i == 0 && leaps[i].change > 0)
- || leaps[i].change > leaps[i - 1].change))
+ && (leaps[i].change > (i == 0 ? 0 : leaps[i - 1].change)))
{
*leap_hit = 1;
while (i > 0