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

Add backtrace when allocation fails for _type

This commit is contained in:
Zdenek Kabelac 2011-09-25 19:42:45 +00:00
parent 5ce39c67e5
commit 60444f8bff

View File

@ -605,7 +605,8 @@ static struct dm_config_value *_value(struct parser *p)
} }
} else } else
h = _type(p); if (!(h = _type(p)))
return_NULL;
return h; return h;
} }