summaryrefslogtreecommitdiff
path: root/src/libudev/libudev-list.c
AgeCommit message (Collapse)Author
2015-09-09tree-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-23remove unused includesThomas 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-13everywhere: make use of new0() and macro() macros, and stop using perror()Lennart Poettering
2014-01-31use memzero(foo, length); for all memset(foo, 0, length); callsGreg 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-12udev: declare some symbols staticKay Sievers
2012-11-13libudev: avoid leak during realloc failureMauro Dreissig
2012-11-12libudev: update copyright headersKay Sievers
2012-08-08fix a couple of issues found with llvm-analyzeLennart Poettering
2012-04-29udev: use container_of() macroLucas De Marchi
2012-04-20docs: hook-up gtk-doc to 'make check'Kay Sievers
2012-04-13udev: move libudev, gudev to src/; move gudev/docs/, udev/docs/ to to docs/Kay Sievers