Searched defs:new_elt (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/lib/libnisdb/yptol/
H A Dmap_ctrl.c511 map_id_elt_t *new_elt; local
521 new_elt = (map_id_elt_t *)calloc(1, sizeof (map_id_elt_t));
522 if (new_elt == NULL) {
525 new_elt->map_name = strdup(map_name);
526 if (new_elt->map_name == NULL) { /* strdup() failed */
527 sfree(new_elt);
530 new_elt->map_id = unique_value;
533 new_elt->next = NULL;
535 new_elt->next = map_id_list[index];
538 map_id_list[index] = new_elt;
[all...]

Completed in 27 milliseconds