Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | tree-wide: htonl() is weird, let's use htobe32() instead (#3538) | Lennart Poettering | 2016-06-15 | 1 | -0/+20 |
| | | | Super-important change, yeah! | ||||
* | tree-wide: remove useless NULLs from strjoina | Zbigniew Jędrzejewski-Szmek | 2016-04-13 | 1 | -0/+6 |
| | | | | The coccinelle patch didn't work in some places, I have no idea why. | ||||
* | tree-wide: use xsprintf() where applicable | Daniel Mack | 2016-01-12 | 1 | -0/+6 |
| | | | | Also add a coccinelle receipt to help with such transitions. | ||||
* | coccinelle: additional errno.cocci hunk | Michal Schmidt | 2015-11-09 | 1 | -0/+7 |
| | | | | | | | | rewrites: log_error_errno(errno, ...); return -errno; into: return log_error_errno(errno, ...); | ||||
* | coccinelle: errno.cocci improvements | Michal Schmidt | 2015-11-09 | 1 | -36/+13 |
| | | | | Apply to all log_*_errno loglevels. | ||||
* | Add Coccinelle patch for strempty() usage | Daniel Mack | 2015-09-30 | 1 | -0/+10 |
| | |||||
* | util: add safe_closedir() similar to safe_fclose() | Lennart Poettering | 2015-09-22 | 1 | -0/+27 |
| | |||||
* | tree-wide: take benefit of the fact that hashmap_free() returns NULL | Lennart Poettering | 2015-09-09 | 1 | -0/+54 |
| | | | | | | And set_free() too. Another Coccinelle patch. | ||||
* | tree-wide: make use of the fact that strv_free() returns NULL | Lennart Poettering | 2015-09-09 | 1 | -0/+27 |
| | | | | Another Coccinelle patch. | ||||
* | Merge pull request #1218 from poettering/safe-fclose | Daniel Mack | 2015-09-09 | 1 | -0/+27 |
|\ | | | | | util: introduce safe_fclose() and port everything over to it | ||||
| * | util: introduce safe_fclose() and port everything over to it | Lennart Poettering | 2015-09-09 | 1 | -0/+27 |
| | | | | | | | | Adds a coccinelle script to port things over automatically. | ||||
* | | tree-wide: replace while(1) by for(;;) everywhere | Lennart Poettering | 2015-09-09 | 1 | -0/+12 |
| | | | | | | | | Another Coccinelle script. | ||||
* | | tree-wide: update empty-if coccinelle script to cover empty-while and more | Lennart Poettering | 2015-09-09 | 1 | -5/+42 |
| | | | | | | | | Let's also clean up single-line while and for blocks. | ||||
* | | tree-wide: make use of log_error_errno() return value in more cases | Lennart Poettering | 2015-09-09 | 1 | -18/+24 |
|/ | | | | | | | The previous coccinelle semantic patch that improved usage of log_error_errno()'s return value, only looked for log_error_errno() invocations with a single parameter after the error parameter. Update the patch to handle arbitrary numbers of additional arguments. | ||||
* | tree-wide: drop {} from one-line if blocks | Lennart Poettering | 2015-09-09 | 1 | -0/+19 |
| | | | | Patch via coccinelle. | ||||
* | tree-wide: make use of log_error_errno() return value | Lennart Poettering | 2015-09-09 | 1 | -0/+42 |
| | | | | | | | | | | | | | | | | | | | | Turns this: r = -errno; log_error_errno(errno, "foo"); into this: r = log_error_errno(errno, "foo"); and this: r = log_error_errno(errno, "foo"); return r; into this: return log_error_errno(errno, "foo"); | ||||
* | tree-wide: don't do assignments within if checks | Lennart Poettering | 2015-09-09 | 1 | -0/+20 |
| | | | | | | | | | | | Turn this: if ((r = foo()) < 0) { ... into this: r = foo(); if (r < 0) { ... | ||||
* | tree-wide: drop redundant if checks before safe_close() | Lennart Poettering | 2015-09-09 | 1 | -0/+7 |
| | | | | | | | | | | | Replace this: if (fd >= 0) safe_close(fd); by this: safe_close(fd); | ||||
* | tree-wide: make more code use safe_close() | Lennart Poettering | 2015-09-09 | 1 | -0/+18 |
| | | | | | | | | | | | Replace this: close(fd); fd = -1; write this: fd = safe_close(fd); | ||||
* | tree-wide: use coccinelle to patch a lot of code to use mfree() | Lennart Poettering | 2015-09-09 | 1 | -0/+6 |
This replaces this: free(p); p = NULL; by this: p = mfree(p); Change generated using coccinelle. Semantic patch is added to the sources. |