Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-05 | Use initalization instead of explicit zeroing | Zbigniew Jędrzejewski-Szmek | |
Before, we would initialize many fields twice: first by filling the structure with zeros, and then a second time with the real values. We can let the compiler do the job for us, avoiding one copy. A downside of this patch is that text gets slightly bigger. This is because all zero() calls are effectively inlined: $ size build/.libs/systemd text data bss dec hex filename before 897737 107300 2560 1007597 f5fed build/.libs/systemd after 897873 107300 2560 1007733 f6075 build/.libs/systemd … actually less than 1‰. A few asserts that the parameter is not null had to be removed. I don't think this changes much, because first, it is quite unlikely for the assert to fail, and second, an immediate SEGV is almost as good as an assert. | |||
2013-03-31 | Modernization | Zbigniew Jędrzejewski-Szmek | |
Use _cleanup_ and wrap lines to ~80 chars and such. | |||
2013-03-31 | Remove some dead code | Zbigniew Jędrzejewski-Szmek | |
Based on coverity report. | |||
2013-03-29 | utmp: make gcc shut up, we need to pass an int here, not size_t | Lennart Poettering | |
2013-03-28 | utmp-wtmp: don't try to read past end of string | Zbigniew Jędrzejewski-Szmek | |
systemd-199/src/shared/utmp-wtmp.c:228: buffer_size_warning: Calling strncpy with a maximum size argument of 32 bytes on destination array "store.ut_line" of size 32 bytes might leave the destination string unterminated. The destination string is unterminated on purpose, but we must remember that. | |||
2012-05-08 | util: split-out path-util.[ch] | Kay Sievers | |
2012-04-12 | move more common files to shared/ and add them to shared.la | Kay Sievers | |