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

Add missing log_error messages

This commit is contained in:
Zdenek Kabelac 2011-09-25 19:43:43 +00:00
parent 60444f8bff
commit d2c25f02e8

View File

@ -543,8 +543,10 @@ static struct dm_config_node *_section(struct parser *p)
{ {
/* IDENTIFIER SECTION_B_CHAR VALUE* SECTION_E_CHAR */ /* IDENTIFIER SECTION_B_CHAR VALUE* SECTION_E_CHAR */
struct dm_config_node *root, *n, *l = NULL; struct dm_config_node *root, *n, *l = NULL;
if (!(root = _create_node(p->mem))) if (!(root = _create_node(p->mem))) {
return_NULL; log_error("Failed to allocate section node");
return NULL;
}
if (!(root->key = _dup_tok(p))) if (!(root->key = _dup_tok(p)))
return_NULL; return_NULL;
@ -598,8 +600,10 @@ static struct dm_config_value *_value(struct parser *p)
* Special case for an empty array. * Special case for an empty array.
*/ */
if (!h) { if (!h) {
if (!(h = _create_value(p->mem))) if (!(h = _create_value(p->mem))) {
return_NULL; log_error("Failed to allocate value");
return NULL;
}
h->type = DM_CFG_EMPTY_ARRAY; h->type = DM_CFG_EMPTY_ARRAY;
} }
@ -617,8 +621,10 @@ static struct dm_config_value *_type(struct parser *p)
struct dm_config_value *v = _create_value(p->mem); struct dm_config_value *v = _create_value(p->mem);
char *str; char *str;
if (!v) if (!v) {
log_error("Failed to allocate type value");
return NULL; return NULL;
}
switch (p->t) { switch (p->t) {
case TOK_INT: case TOK_INT:
@ -1251,8 +1257,10 @@ struct dm_config_node *dm_config_clone_node_with_mem(struct dm_pool *mem, const
{ {
struct dm_config_node *new_cn; struct dm_config_node *new_cn;
if (!cn) if (!cn) {
log_error("Cannot clone NULL config node.");
return NULL; return NULL;
}
if (!(new_cn = _create_node(mem))) { if (!(new_cn = _create_node(mem))) {
log_error("Failed to clone config node."); log_error("Failed to clone config node.");