aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* update copyright headersMike Frysinger2024-01-011-2/+2
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Undo IWYU fixesSam James2023-01-291-7/+0
| | | | | | | | | | | | I wasn't paying enough attention, it's better to just fold the needed bits into porting.h. This reverts commit ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee. This reverts commit f8287200aec0ca33ef07fafcdd5aef0aa6eb1306. This reverts commit aa907a42d89ddfd5a7e64d8182a1da35277f2f6e. Bug: https://github.com/gentoo/pax-utils/pull/11#issuecomment-1407566344 Signed-off-by: Sam James <sam@gentoo.org>
* *: IWYU fixes deuxSam James2023-01-291-0/+1
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* *: IWYU fixesSam James2023-01-281-0/+6
| | | | | | | Separate from the first commit as this one was done programmatically with dev-util/include-what-you-use. Signed-off-by: Sam James <sam@gentoo.org>
* migrate to gitv1.0Mike Frysinger2015-03-021-1/+0
|
* fix possible memory read errors when walking arraysMike Frysinger2014-03-201-2/+6
| | | | the current code will always fetch the arr->eles[n] in array_for_each before doing the n < arr->num check. gcc might optimize it such that the read occurs rather than delaying it until after the loop limit check, but it also might not. at any rate, ASAN catches it and complains mightly. this new method ends up wasting 1 pointer worth of memory, but we wont worry about 4 or 8 bytes per array as this code is not that critical.
* update copyright yearsMike Frysinger2012-11-041-4/+4
|
* allow people to search for multiple libraries (-N) or data sections (-k)Mike Frysinger2011-09-271-1/+41
|
* make sure we initialize new string memoryMike Frysinger2010-02-131-3/+7
|
* use %zu for size_t instead of casting to random long typesMike Frysinger2010-02-131-4/+4
|
* dont need strndup code anymoreMike Frysinger2009-12-031-27/+1
|
* allow xstrcat to start off with a NULL destinationMike Frysinger2009-12-011-2/+2
|
* c&p errorFabian Groffen2009-01-311-2/+2
|
* For bug #249731, add an xstrndup wrapper, and implement strndup on hosts ↵Fabian Groffen2009-01-311-1/+27
| | | | that don't have it, based on the strndup implementation of sandbox, with a little change to make it C90 compliant.
* drop local func decls as we already include xfuncs.h and get themMike Frysinger2008-12-301-7/+1
|
* declare xzalloc()Mike Frysinger2008-12-301-1/+7
|
* add missing split xfuncs filesv0.1.16Mike Frysinger2007-08-251-0/+62