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

pvscan: missing test for id_read_format

(in release fix)
This commit is contained in:
Zdenek Kabelac 2013-04-29 12:34:50 +02:00
parent f319a61e9c
commit dacc340cc8

View File

@ -103,7 +103,9 @@ static int _auto_activation_handler(struct cmd_context *cmd,
if (partial)
return 1;
id_read_format(&vgid_raw, vgid);
if (!id_read_format(&vgid_raw, vgid))
return_0;
/* NB. This is safe because we know lvmetad is running and we won't hit
* disk. */
if (!(vg = vg_read_internal(cmd, NULL, (const char *) &vgid_raw, 0, &consistent)))