Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 468206
Collapse All | Expand All

(-)lib/cache/lvmetad.c.dist (-1 / +1 lines)
Lines 795-801 Link Here
795
	struct volume_group *this = mda->ops->vg_read(b->fid, "", mda, 1);
795
	struct volume_group *this = mda->ops->vg_read(b->fid, "", mda, 1);
796
796
797
	/* FIXME Also ensure contents match etc. */
797
	/* FIXME Also ensure contents match etc. */
798
	if (!b->vg || this->seqno > b->vg->seqno)
798
	if (!b->vg || (this && this->seqno > b->vg->seqno))
799
		b->vg = this;
799
		b->vg = this;
800
	else if (b->vg)
800
	else if (b->vg)
801
		release_vg(this);
801
		release_vg(this);

Return to bug 468206