1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

ctdb-daemon: Drop some uses of CTDB_NO_MEMORY{,_FATAL}()

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2016-08-24 16:49:30 +10:00 committed by Amitay Isaacs
parent c3502cf9f9
commit 1790f9f754

View File

@ -116,9 +116,16 @@ static int ctdb_add_local_iface(struct ctdb_context *ctdb, const char *iface)
/* create a new structure for this interface */
i = talloc_zero(ctdb, struct ctdb_interface);
CTDB_NO_MEMORY_FATAL(ctdb, i);
if (i == NULL) {
DEBUG(DEBUG_ERR, (__location__ " out of memory\n"));
return -1;
}
i->name = talloc_strdup(i, iface);
CTDB_NO_MEMORY(ctdb, i->name);
if (i->name == NULL) {
DEBUG(DEBUG_ERR, (__location__ " out of memory\n"));
talloc_free(i);
return -1;
}
i->link_up = true;