1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cov: hide some messages

Living with these...
This commit is contained in:
Zdenek Kabelac 2023-07-12 14:12:51 +02:00
parent 4c78bdcfaa
commit 491ee5d106
2 changed files with 3 additions and 0 deletions

View File

@ -1091,6 +1091,7 @@ static void cpg_message_callback(cpg_handle_t handle, const struct cpg_name *gna
(rq->u_rq.request_type != DM_ULOG_RESUME) && (rq->u_rq.request_type != DM_ULOG_RESUME) &&
(rq->u_rq.request_type != DM_ULOG_CLEAR_REGION) && (rq->u_rq.request_type != DM_ULOG_CLEAR_REGION) &&
(rq->u_rq.request_type != DM_ULOG_CHECKPOINT_READY)) { (rq->u_rq.request_type != DM_ULOG_CHECKPOINT_READY)) {
/* coverity[suspicious_sizeof] allocation is using varargs data @end */
tmp_rq = malloc(DM_ULOG_REQUEST_SIZE); tmp_rq = malloc(DM_ULOG_REQUEST_SIZE);
if (!tmp_rq) { if (!tmp_rq) {
/* /*
@ -1340,6 +1341,7 @@ static void cpg_join_callback(struct clog_cpg *match,
goto out; goto out;
} }
/* coverity[suspicious_sizeof] allocation is using varargs data @end */
rq = malloc(DM_ULOG_REQUEST_SIZE); rq = malloc(DM_ULOG_REQUEST_SIZE);
if (!rq) { if (!rq) {
LOG_ERROR("cpg_config_callback: " LOG_ERROR("cpg_config_callback: "

View File

@ -497,6 +497,7 @@ int thin_pool_prepare_metadata(struct logical_volume *metadata_lv,
return 0; return 0;
} }
/* coverity[secure_temp] until better solution */
if (!(f = tmpfile())) { if (!(f = tmpfile())) {
log_error("Cannot create temporary file to prepare metadata."); log_error("Cannot create temporary file to prepare metadata.");
return 0; return 0;