1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

coverity: remove dead code in lv_info_with_seg_status

Just call return 0 directly on error path, without using
"goto" - the code is short, no need to use it this way
(the dead code appeared as part of further changes in this
function).
This commit is contained in:
Peter Rajnoha 2014-11-26 11:30:01 +01:00
parent 2cd98b2782
commit 86ae68a5f7

View File

@ -719,15 +719,13 @@ int lv_info_with_seg_status(struct cmd_context *cmd, const struct logical_volume
struct lvinfo *lvinfo, struct lv_seg_status *lv_seg_status,
int with_open_count, int with_read_ahead)
{
int r = 0;
if (!activation())
return 0;
if (lv == lv_seg->lv) {
r = _lv_info(cmd, lv, use_layer, lvinfo, lv_seg, lv_seg_status,
with_open_count, with_read_ahead);
goto out;
return 0;
}
/*
@ -737,10 +735,6 @@ int lv_info_with_seg_status(struct cmd_context *cmd, const struct logical_volume
*/
return _lv_info(cmd, lv, use_layer, lvinfo, NULL, NULL, with_open_count, with_read_ahead) &&
_lv_info(cmd, lv_seg->lv, use_layer, NULL, lv_seg, lv_seg_status, 0, 0);
r = 1;
out:
return r;
}
#define OPEN_COUNT_CHECK_RETRIES 25