Home
last modified time | relevance | path

Searched refs:new_email (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/lib/libcommputil/common/
H A Dsdp_parse.c201 sdp_list_t *new_email = NULL; in sdp_parse_email() local
212 new_email = calloc(1, sizeof (sdp_list_t)); in sdp_parse_email()
213 if (new_email == NULL) { in sdp_parse_email()
217 COMMP_COPY_STR(new_email->value, begin, len); in sdp_parse_email()
218 if (new_email->value == NULL) { in sdp_parse_email()
219 free(new_email); in sdp_parse_email()
224 *email = new_email; in sdp_parse_email()
229 tmp->next = new_email; in sdp_parse_email()