summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
2022-09-19fix error cases in gethostbyaddr_rRich Felker-2/+3
2022-09-19remove impossible error case from gethostbyname2_rRich Felker-1/+0
2022-09-19fix return value of gethostnbyname[2]_r on result not foundRich Felker-1/+1
2022-09-19dns: treat names rejected by res_mkquery as nonexistent rather than errorRich Felker-1/+1
2022-09-19res_mkquery: error out on consecutive final dots in nameRich Felker-0/+1
2022-09-19fix thread leak on timer_create(SIGEV_THREAD) failureAlexey Izbyshev-1/+5
2022-09-19re-enable vdso clock_gettime on arm (32-bit) with workaroundRich Felker-0/+3
2022-09-07fix fwprintf missing output to open_wmemstream FILEsRich Felker-1/+5
2022-08-26dns: fail if ipv6 is disabled and resolv.conf has only v6 nameservesRich Felker-0/+5
2022-08-26use kernel-provided AT_MINSIGSTKSZ for sysconf(_SC_[MIN]SIGSTKSZ)Rich Felker-2/+12
2022-08-26add sysconf keys/values for signal stack sizeRich Felker-0/+3
2022-08-24fix fallback when ipv6 is disabled but resolv.conf has v6 nameservesRich Felker-1/+2
2022-08-24epoll_create: fail with EINVAL if size is non-positiveKristina Martsenko-0/+1
2022-08-20use alt signal stack when present for implementation-internal signalsRich Felker-3/+3
2022-08-17freopen: reset stream orientation (byte/wide) and encoding ruleRich Felker-0/+2
2022-08-02ldso: support DT_RELR relative relocation formatFangrui Song-1/+1
2022-08-02use syscall_arg_t and __scc macro for arguments to __alt_socketcallAlex Xu (Hello71)-3/+3
2022-08-01fix ESRCH error handling for clock_getcpuclockidEugene Yudin-0/+1
2022-08-01aarch64: add vforkSzabolcs Nagy-0/+9
2022-08-01fix mishandling of errno in getaddrinfo AI_ADDRCONFIG logicRich Felker-0/+2
2022-06-23avoid limited space of random temp file names if clock resolution is lowRich Felker-1/+1
2022-06-03remove random filename obfuscation that leaks ASLR informationRich Felker-1/+2
2022-06-03ensure distinct query id for parallel A and AAAA queries in resolverRich Felker-0/+3
2022-05-15mntent: fix potential mishandling of extremely long linesRich Felker-0/+2
2022-05-15mntent: fix parsing lines with optional fieldsAlyssa Ross-3/+7
2022-05-06fix constraint violation in qsort wrapper around qsort_rRich Felker-1/+1
2022-05-04use __fstat instead of __fstatat with AT_EMPTY_PATH in __map_fileRich Felker-2/+1
2022-05-04provide an internal namespace-safe __fstatRich Felker-2/+5
2022-05-01only use fstatat and others legacy stat syscalls if they existRich Felker-1/+9
2022-05-01drop direct use of stat syscalls in internal __map_fileRich Felker-3/+3
2022-05-01provide an internal namespace-safe __fstatatRich Felker-1/+11
2022-05-01drop direct use of stat syscalls in fchmodatRich Felker-8/+7
2022-05-01drop use of stat operation in temporary file name generationRich Felker-10/+6
2022-05-01only fallback to gettimeofday/settimeofday syscalls if they existStefan O'Rear-0/+4
2022-05-01only use getrlimit/setrlimit syscalls if they existStefan O'Rear-1/+11
2022-04-27don't remap internal-use syscall macros to nonexistent time32 syscallsStefan O'Rear-10/+10
2022-04-20add missing POSIX confstr keys for pthread CFLAGS/LDFLAGSRich Felker-1/+1
2022-04-10fix incorrect parameter name in internal netlink.h RTA_OK macroOndrej Jirman-1/+1
2022-03-27accept null pointer as message argument to gettext functionspsykose-0/+3
2022-03-16fix invalid free of duplocale object when malloc has been replacedIsaiah Poston-0/+5
2022-03-08nice: return EPERM instead of EACCESAlexey Kodanev-1/+8
2022-03-08protect stack canary from leak via read-as-string by zeroing second bytejvoisin-0/+9
2022-03-08math: avoid runtime conversions of floating-point constantsSzabolcs Nagy-2/+6
2022-02-20fix spurious failures by fgetws when buffer ends with partial characterRich Felker-6/+1
2022-02-19add missing strerror text for key managementpelco-0/+4
2022-02-09fix out-of-bound read processing time zone data with distant-past datesRich Felker-14/+12
2022-01-18fix potentially wrong-sign zero in cproj functions at infinityRich Felker-3/+3
2022-01-09make fseek detect and produce an error for invalid whence argumentsRich Felker-0/+7
2021-12-27fix wcwidth of hangul combining (vowel/final) lettersRich Felker-58/+60
2021-12-09fix mismatched signatures for strtod_l familyRich Felker-7/+22