1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

util: silence coverity

Make it clear in the code that ignoring a failed safe_ato?() is intentional.
This commit is contained in:
Tom Gundersen 2014-09-29 14:30:15 +02:00
parent e8c8ddccfc
commit 9fb02b1d5d

View File

@ -3272,8 +3272,13 @@ unsigned columns(void) {
c = 0;
e = getenv("COLUMNS");
if (e)
safe_atoi(e, &c);
if (e) {
int r;
r = safe_atoi(e, &c);
if (r < 0) {}
/* do nothing, we fall back to c = 0 */
}
if (c <= 0)
c = fd_columns(STDOUT_FILENO);
@ -3306,8 +3311,13 @@ unsigned lines(void) {
l = 0;
e = getenv("LINES");
if (e)
safe_atou(e, &l);
if (e) {
int r;
r = safe_atou(e, &l);
if (r < 0) {}
/* do nothing, we fall back to l = 0 */
}
if (l <= 0)
l = fd_lines(STDOUT_FILENO);