Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libcommputil/common/
H A Dsdp_parse.c199 sdp_list_t *new_email = NULL; in sdp_parse_email() local
210 new_email = calloc(1, sizeof (sdp_list_t)); in sdp_parse_email()
211 if (new_email == NULL) { in sdp_parse_email()
215 COMMP_COPY_STR(new_email->value, begin, len); in sdp_parse_email()
216 if (new_email->value == NULL) { in sdp_parse_email()
217 free(new_email); in sdp_parse_email()
222 *email = new_email; in sdp_parse_email()
227 tmp->next = new_email; in sdp_parse_email()