- TIME_T_MAX is always time_t so the check in time-util.c was redundant
- quota-util.c was zero-ing a pointer
- smbios11.c was calling sizeof(pointer)
_cleanup_close_ int fd = -EBADF;
- assert_cc(sizeof(time_t) == sizeof(TIME_T_MAX));
-
/* Uses TFD_TIMER_CANCEL_ON_SET to get notifications whenever CLOCK_REALTIME makes a jump relative to
* CLOCK_MONOTONIC. */
r = quotactl_fd_with_fallback(fd, QCMD_FIXED(Q_GETQUOTA, PRJQUOTA), proj_id, ret_req);
if (r == -ESRCH || ERRNO_IS_NEG_NOT_SUPPORTED(r) || ERRNO_IS_NEG_PRIVILEGE(r)) {
- zero(ret_req);
+ *ret_req = (struct dqblk) {};
return false;
}
if (r < 0)
AT_FDCWD, p,
/* offset = */ UINT64_MAX,
max_size >= SIZE_MAX - offsetof(struct dmi_field_header, contents) ? SIZE_MAX :
- sizeof(dmi_field_header) + max_size,
+ sizeof(struct dmi_field_header) + max_size,
/* flags = */ 0,
/* bind_name = */ NULL,
(char**) &data, &size);