Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-07-31 | tree-wide: introduce mfree() | David Herrmann | |
Pretty trivial helper which wraps free() but returns NULL, so we can simplify this: free(foobar); foobar = NULL; to this: foobar = mfree(foobar); | |||
2014-11-20 | busctl: add new "introspect" verb for introspecting objects | Lennart Poettering | |
2014-11-20 | busctl: split out introspection parser from tree logic so that we can reuse ↵ | Lennart Poettering | |
it for a future "busctl introspect" command |