summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2017-03-14fix possible fd leak, unrestored cancellation state on dns socket failRich Felker1-1/+5
2017-03-14in static dl_iterate_phdr, fix use of possibly-uninitialized aux dataRich Felker1-1/+1
2017-03-14fix free of uninitialized buffer pointer on error in regexecRich Felker1-3/+3
2017-03-05fix lsearch and lfind to pass key as first arg to the compar callbackSzabolcs Nagy1-2/+2
2017-02-15fix build regression in arm atomics asm with new binutilsRich Felker1-1/+1
2017-02-15s390x: implement dlsymBobby Bingham1-0/+6
2017-01-29avoid unbounded strlen in gettext functionsRich Felker1-3/+3
2017-01-29fix use of uninitialized pointer in gettext coreRich Felker1-2/+2
2017-01-29fix bindtextdomain logic error deactivating other domainsRich Felker1-1/+1
2017-01-19fix spurious EINTR errors from multithreaded set*id, etc.Rich Felker1-1/+1
2017-01-13fix crashes in x32 __tls_get_addrrofl0r2-2/+6
2017-01-04treat base 1 as an error in strtol-family functionsRich Felker1-1/+1
2017-01-04fix getopt[_long] clobbering of optopt on successRich Felker2-2/+5
2017-01-02make globfree safe after failed glob from over-length argumentRich Felker1-2/+2
2017-01-02fix strftime %y for negative yearsRich Felker1-2/+2
2016-12-20fix support for initialized TLS in static PIE binariesRich Felker1-0/+5
2016-12-19rework arm atomic/tp backends to be thumb-compatible and fdpic-readyRich Felker4-56/+69
2016-12-17disable use of arm memcpy asm if building as thumb codeRich Felker2-2/+2
2016-12-17make arm setjmp/longjmp asm thumb2-compatibleRich Felker2-2/+6
2016-12-17use lookup table for malloc bin index instead of float conversionSzabolcs Nagy1-2/+12
2016-12-16handle ^ and $ in BRE subexpression start and end as anchorsSzabolcs Nagy1-9/+12
2016-12-16fix mrand48/jrand48 return value on 64-bit archsRich Felker1-1/+1
2016-12-16fix crashing sigsetjmp on s390xBobby Bingham1-1/+1
2016-12-06remove largish unused field from pthread structureRich Felker1-1/+0
2016-11-12work around gdb issues recognizing sigreturn trampoline on x86_64Rich Felker2-8/+6
2016-11-11add s390x portBobby Bingham12-0/+269
2016-11-11treat null vdso base same as missingBobby Bingham1-0/+1
2016-11-11generalize ELF hash table types not to assume 32-bit entriesRich Felker1-1/+2
2016-11-08fix build regression on archs with variable page sizeRich Felker1-1/+1
2016-11-08add limited pthread_setattr_default_np API to set stack size defaultsRich Felker2-4/+43
2016-11-08fix pthread_create regression from stack/guard size simplificationRich Felker1-1/+4
2016-11-07simplify pthread_attr_t stack/guard size representationRich Felker7-11/+13
2016-11-07fix swprintf internal buffer state and error handlingRich Felker1-1/+8
2016-11-07fix integer overflow of tm_year in __secs_to_tmDaniel Sabogal1-4/+5
2016-11-07fix parsing of quoted time zone namesHannu Nyman1-1/+1
2016-10-21redesign snprintf without undefined behaviorRich Felker1-25/+38
2016-10-20add missing confstr constantsDaniel Sabogal1-1/+1
2016-10-20fix minor problem in previous strtod non-nearest rounding bug fixRich Felker1-1/+1
2016-10-20fix strtod int optimization in non-nearest rounding modeSzabolcs Nagy1-1/+4
2016-10-20fix strtod and strtof rounding with many trailing zerosSzabolcs Nagy1-0/+3
2016-10-20fix gratuitous undefined behavior in strptimeRich Felker1-2/+7
2016-10-20fix getopt_long_only misinterpreting "--" as an optionRich Felker1-1/+1
2016-10-20fix float formatting of some exact halfway casesSzabolcs Nagy1-1/+2
2016-10-20add pthread_setname_npFelix Janda1-0/+26
2016-10-20fix clock_nanosleep error caseDaniel Sabogal1-1/+3
2016-10-20math: fix pow signed shift ubSzabolcs Nagy1-2/+2
2016-10-20use dynamic buffer for getmntentNatanael Copa1-4/+13
2016-10-20fix integer overflows and uncaught EOVERFLOW in printf coreRich Felker2-46/+89
2016-10-19fix integer overflow in float printf needed-precision computationRich Felker1-1/+1
2016-10-06fix regexec with haystack strings longer than INT_MAXRich Felker1-26/+28