Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-16 | tree-wide: use mfree more | Zbigniew Jędrzejewski-Szmek | |
2015-10-27 | util-lib: split out allocation calls into alloc-util.[ch] | Lennart Poettering | |
2015-09-09 | tree-wide: use coccinelle to patch a lot of code to use mfree() | Lennart Poettering | |
This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources. | |||
2015-02-23 | remove unused includes | Thomas Hindoe Paaboel Andersen | |
This patch removes includes that are not used. The removals were found with include-what-you-use which checks if any of the symbols from a header is in use. | |||
2014-02-13 | everywhere: make use of new0() and macro() macros, and stop using perror() | Lennart Poettering | |
2014-01-31 | use memzero(foo, length); for all memset(foo, 0, length); calls | Greg KH | |
In trying to track down a stupid linker bug, I noticed a bunch of memset() calls that should be using memzero() to make it more "obvious" that the options are correct (i.e. 0 is not the length, but the data to set). So fix up all current calls to memset(foo, 0, length) to memzero(foo, length). | |||
2013-11-12 | udev: declare some symbols static | Kay Sievers | |
2012-11-13 | libudev: avoid leak during realloc failure | Mauro Dreissig | |
2012-11-12 | libudev: update copyright headers | Kay Sievers | |
2012-08-08 | fix a couple of issues found with llvm-analyze | Lennart Poettering | |
2012-04-29 | udev: use container_of() macro | Lucas De Marchi | |
2012-04-20 | docs: hook-up gtk-doc to 'make check' | Kay Sievers | |
2012-04-13 | udev: move libudev, gudev to src/; move gudev/docs/, udev/docs/ to to docs/ | Kay Sievers | |