Zbigniew Jędrzejewski-Szmek
cbe97b9c92
basic/log: force log_*_errno() to return negative
...
This silences some warnigns where gcc thinks that some variables are
unitialized. One particular case:
../src/journal/journald-server.c: In function 'ache_space_refresh':
../src/journal/journald-server.c:136:28: error: 'vfs_avail' may be used uninitialized in this function [-Werror=maybe-uninitialized]
136 | uint64_t vfs_used, vfs_avail, avail;
| ^~~~~~~~~
../src/journal/journald-server.c:136:18: error: 'vfs_used' may be used uninitialized in this function [-Werror=maybe-uninitialized]
136 | uint64_t vfs_used, vfs_avail, avail;
| ^~~~~~~~
cc1: all warnings being treated as errors
which is caused by
d = opendir(path);
if (!d)
return log_full_errno(errno == ENOENT ? LOG_DEBUG : LOG_ERR,
errno, "Failed to open %s: %m", path);
if (fstatvfs(dirfd(d), &ss) < 0)
return log_error_errno(errno, "Failed to fstatvfs(%s): %m", path);
For some reason on aarch64 gcc thinks we might return non-negative here. In
principle errno must be set in both cases, but it's hard to say for certain.
So let's make sure that our code flow is correct, even if somebody forgot to
set the global variable somewhere.
2021-04-14 16:19:54 +02:00
..
2021-02-25 01:57:29 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-01-28 09:55:35 +01:00
2020-11-09 13:23:58 +09:00
2021-02-19 15:25:16 +01:00
2020-11-09 13:23:58 +09:00
2021-02-10 14:46:59 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-01-28 09:55:35 +01:00
2020-11-09 13:23:58 +09:00
2020-12-09 10:07:52 +01:00
2020-11-09 13:23:58 +09:00
2021-03-05 19:27:23 +01:00
2021-03-23 16:37:05 +01:00
2020-11-09 13:23:58 +09:00
2021-03-05 07:10:13 +09:00
2021-03-02 13:11:37 +09:00
2020-12-03 12:16:02 +01:00
2021-04-14 16:19:54 +02:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-26 13:35:48 +01:00
2020-11-09 13:23:58 +09:00
2021-01-28 09:55:35 +01:00
2021-03-05 07:10:13 +09:00
2021-03-05 07:10:13 +09:00
2021-04-09 20:28:47 -07:00
2021-04-09 20:28:47 -07:00
2020-12-18 12:33:43 +09:00
2020-12-18 12:33:43 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-04-07 16:04:22 +02:00
2021-03-04 22:35:52 +00:00
2021-03-26 12:19:31 +01:00
2021-03-26 12:19:31 +01:00
2020-11-09 13:23:58 +09:00
2021-03-05 07:10:13 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-16 17:15:11 +01:00
2021-01-19 07:04:19 +09:00
2021-04-14 12:25:06 +01:00
2021-01-19 07:04:19 +09:00
2021-03-05 07:10:13 +09:00
2020-11-09 13:23:58 +09:00
2021-03-31 18:24:54 +02:00
2021-02-22 20:10:55 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-01-28 09:55:35 +01:00
2021-04-08 13:08:38 +01:00
2021-03-05 07:10:13 +09:00
2020-11-25 09:48:17 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-03-11 09:21:07 +01:00
2021-03-11 09:21:07 +01:00
2021-01-27 08:19:39 +01:00
2021-02-16 17:15:11 +01:00
2021-03-31 18:22:53 +02:00
2021-03-04 22:35:52 +00:00
2021-03-05 07:10:13 +09:00
2020-11-09 13:23:58 +09:00
2021-03-09 14:37:23 +00:00
2021-03-18 11:59:31 +01:00
2021-03-31 10:51:35 +02:00
2021-02-16 17:15:11 +01:00
2021-01-28 09:55:35 +01:00
2021-01-28 09:55:35 +01:00
2021-01-28 09:55:35 +01:00
2021-01-28 09:55:35 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-18 16:38:27 +01:00
2021-01-15 14:29:42 +01:00
2021-03-05 07:10:13 +09:00
2020-11-09 13:23:58 +09:00
2021-02-22 20:10:55 +01:00
2021-02-22 20:10:55 +01:00
2021-04-08 13:08:38 +01:00
2021-02-18 03:48:06 +09:00
2021-03-04 05:06:43 +09:00
2021-03-05 07:10:13 +09:00
2020-11-18 11:15:05 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-18 22:36:34 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-04-08 23:00:43 +02:00
2021-04-08 23:00:43 +02:00
2021-03-22 21:48:17 +01:00
2021-04-14 16:19:54 +02:00
2020-11-09 13:23:58 +09:00
2021-03-31 21:43:45 +02:00
2021-02-21 12:22:13 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-03-26 12:19:31 +01:00
2020-11-09 13:23:58 +09:00
2021-04-14 16:19:54 +02:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2018-12-04 07:49:24 +01:00
2020-12-07 13:46:35 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-26 09:21:51 +01:00
2021-02-26 09:21:51 +01:00
2021-03-08 12:39:50 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-03-26 11:39:37 +01:00
2020-12-21 21:48:13 +01:00
2020-10-29 11:41:27 +01:00
2020-10-29 11:41:27 +01:00
2021-03-07 12:22:28 +01:00
2021-03-04 00:04:36 +08:00
2021-03-23 14:14:08 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-03-14 00:39:05 +09:00
2021-03-14 00:39:05 +09:00
2021-03-07 12:15:42 +01:00
2021-02-22 20:10:55 +01:00
2021-02-18 22:36:34 +01:00
2021-02-18 22:36:34 +01:00
2021-04-14 12:25:06 +01:00
2020-11-09 13:23:58 +09:00
2021-04-07 14:03:49 +01:00
2021-04-07 14:03:49 +01:00
2021-02-18 22:36:34 +01:00
2021-02-18 22:36:34 +01:00
2020-11-09 13:23:58 +09:00
2021-03-05 07:10:13 +09:00
2021-04-07 16:19:35 +02:00
2020-11-09 13:23:58 +09:00
2021-03-24 16:46:45 +09:00
2021-03-11 08:55:20 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-18 21:19:23 +01:00
2021-02-18 21:19:23 +01:00
2021-03-05 07:10:08 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-04-06 18:42:30 +02:00
2020-12-17 19:57:18 +01:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-02-15 15:30:35 +01:00
2020-11-09 13:23:58 +09:00
2021-03-04 14:50:50 +09:00
2021-03-18 11:59:31 +01:00
2021-03-30 13:24:12 +02:00
2021-02-16 17:15:11 +01:00
2021-02-18 16:38:27 +01:00
2021-01-27 08:19:39 +01:00
2020-11-09 13:23:58 +09:00
2021-02-25 11:32:28 +01:00
2021-02-25 11:32:28 +01:00
2020-10-29 11:32:24 +01:00
2020-12-30 04:14:18 +09:00
2020-11-09 13:23:58 +09:00
2021-02-10 14:46:59 +01:00
2020-11-09 13:23:58 +09:00
2021-03-10 11:11:52 +09:00
2021-03-31 18:22:53 +02:00
2020-12-17 20:01:02 +01:00
2020-12-17 20:01:02 +01:00
2020-12-17 20:21:46 +01:00
2021-02-16 20:24:27 +01:00
2020-11-09 13:23:58 +09:00
2020-12-10 13:00:14 +01:00
2020-11-09 13:23:58 +09:00
2021-04-08 13:00:50 +02:00
2021-02-16 17:15:11 +01:00
2021-02-10 14:46:59 +01:00
2021-02-14 11:24:45 +01:00
2021-03-05 19:27:23 +01:00
2021-02-09 14:22:54 +09:00
2021-03-05 09:29:57 +09:00
2021-03-05 09:29:57 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-08 12:31:46 +01:00
2021-03-05 20:41:07 +01:00
2021-03-05 20:41:07 +01:00
2021-03-01 13:40:52 +01:00
2020-11-09 13:23:58 +09:00
2021-04-14 12:25:06 +01:00
2021-03-03 03:08:31 +09:00
2021-04-14 12:25:06 +01:00
2021-03-03 12:16:21 +09:00
2021-04-13 12:53:32 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2020-11-09 13:23:58 +09:00
2021-04-08 23:01:25 +02:00
2021-02-16 23:39:58 +01:00
2021-02-25 05:54:11 +09:00
2021-02-10 14:46:59 +01:00
2021-02-10 14:46:59 +01:00
2021-02-10 14:46:59 +01:00
2021-03-08 22:47:14 +01:00
2020-11-09 13:23:58 +09:00
2021-03-05 07:10:13 +09:00
2021-03-05 07:10:13 +09:00
2021-02-09 14:25:03 +09:00
2021-02-09 14:25:03 +09:00
2021-02-17 15:31:29 +09:00
2021-02-17 15:31:29 +09:00
2021-03-05 07:10:13 +09:00
2020-11-09 13:23:58 +09:00