about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* riscv: correct symbol version of __vdso_flush_icachegns2024-02-031-1/+1
* elf.h: add NT_RISCV_CSR and NT_RISCV_VECTOR constantsElliott Hughes2024-02-031-0/+2
* elf.h: update RISC-V relocation typesFangrui Song2024-02-031-6/+10
* add preadv2 and pwritev2 syscall wrappers, flag value macrosRich Felker2024-01-253-0/+41
* expose ppoll in default feature profileRich Felker2024-01-212-3/+3
* move ppoll from src/linux to src/select reflecting future standardizationRich Felker2024-01-211-0/+0
* remove INT_MAX limit on the n argument to snprintf/swprintfRich Felker2024-01-172-8/+0
* strftime: don't attempt to parse field width without seeing a digitRich Felker2023-11-211-1/+2
* mntent: fields are delimited only by tabs or spaces, not general whitespaceRich Felker2023-11-161-1/+1
* mntent: unescape octal sequencesq662023-11-161-4/+40
* ldso: fix TLSDESC addend processing on archs with backwards descriptorsRich Felker2023-11-061-1/+1
* ldso: convert TLSDESC_BACKWARDS from "#ifdef" to "if" logicRich Felker2023-11-063-6/+10
* byte-based printf family: emit a nul byte for %lc with argument zeroRich Felker2023-11-061-0/+2
* remove arbitrary limit from dns result parsingQuentin Rameau2023-11-061-1/+0
* pass AT_NO_AUTOMOUNT when emulating fstatat via statxAlexey Izbyshev2023-11-061-0/+1
* __year_to_secs: fix dangling pointerAlex Xu (Hello71)2023-11-061-2/+2
* timer_create: volatile static -> static volatileAlex Xu (Hello71)2023-11-061-1/+1
* ensure valid setxid return value in an unexpected error caseMarkus Wichmann2023-11-061-1/+1
* synccall: add separate exit_sem to fix thread release logic bugMarkus Wichmann2023-11-061-3/+5
* ldso: use __ehdr_start if available to locate its own ELF headersRich Felker2023-11-061-1/+3
* remove non-prototype declaration of basename from string.hRich Felker2023-11-061-3/+0
* elf.h: add typedefs for Elf64_Relr and Elf32_RelrViolet Purcell2023-11-061-0/+5
* glob: fix wrong return code when aborting before any matchesRich Felker2023-08-241-1/+1
* statvfs: allocate spare for f_typeнаб2023-08-192-1/+3
* math: fix ld80 powl(x,huge) and powl(LDBL_MAX,small)Szabolcs Nagy2023-08-191-13/+21
* math: fix ld80 acoshl(x) for x < 0Szabolcs Nagy2023-08-191-3/+7
* fix rejection of dns responses with pointers past 512 byte offsetRich Felker2023-07-171-2/+2
* dns stub resolver: increase buffer size to handle chained CNAMEsRich Felker2023-07-041-1/+1
* printf core: fix gratuitous integer formatting buffer sizeRich Felker2023-06-121-1/+1
* all printf variants: fix argument type handling for %c and %lcRich Felker2023-06-122-4/+4
* fix public clone function to be safe and usable by applicationsRich Felker2023-06-013-16/+68
* fix broken thread list unlocking after forkRich Felker2023-06-011-1/+1
* mbrtowc: Fix wrong return value when n > UINT_MAXAlexey Izbyshev2023-05-261-1/+1
* configure: replace -Os with equivalent based on -O2Rich Felker2023-05-211-1/+14
* move fallocate64 declaration under _LARGEFILE64_SOURCE feature testRich Felker2023-05-021-1/+3
* release 1.2.4 v1.2.4Rich Felker2023-05-012-1/+70
* fix return value of wmemcmp for extreme wchar_t valuesRich Felker2023-04-241-1/+1
* fix wide printf numbered argument buffer overflowGabriel Ravier2023-04-141-2/+2
* wait4: fix missing rusage on x32 due to wrong success conditionAlexey Izbyshev2023-04-111-1/+1
* semtimedop: fix timespec kernel ABI mismatch for 32-bit timeouts on x32Alexey Izbyshev2023-04-111-1/+2
* getopt: fix null pointer arithmetic ubAlexey Izbyshev2023-04-111-1/+2
* nftw: fix use of uninitialized struct statAlexey Izbyshev2023-04-111-1/+3
* fix inadvertently static local var in dynlink get_lfs64Rich Felker2023-04-111-1/+2
* dns: check length field in tcp response messageAlexey Kodanev2023-04-071-0/+1
* fix swprintf handling of nul character in outputRich Felker2023-03-221-0/+1
* in printf, use ferror macro rather than directly inspecting flags bitRich Felker2023-03-211-2/+2
* remove wide printf dependency on ugly hack in vfprintfRich Felker2023-03-212-9/+15
* fix (normal, narrow) printf erroneously processing %n after output errorsRich Felker2023-03-211-0/+3
* fix wide printf continuation after output or encoding errorsRich Felker2023-03-211-2/+6
* fix wide printf forms ignoring width for %lc format specifierRich Felker2023-03-201-5/+2