Lines Matching refs:new_attr
809 sdp_attr_t *new_attr; in sdp_parse_attribute() local
816 new_attr = calloc(1, sizeof (sdp_attr_t)); in sdp_parse_attribute()
817 if (new_attr == NULL) { in sdp_parse_attribute()
827 COMMP_COPY_STR(new_attr->a_name, begin, current - begin); in sdp_parse_attribute()
828 if (new_attr->a_name == NULL) { in sdp_parse_attribute()
829 sdp_free_attribute(new_attr); in sdp_parse_attribute()
839 COMMP_COPY_STR(new_attr->a_value, current, end - current); in sdp_parse_attribute()
840 if (new_attr->a_value == NULL) { in sdp_parse_attribute()
841 sdp_free_attribute(new_attr); in sdp_parse_attribute()
847 *attr = new_attr; in sdp_parse_attribute()
852 tmp->a_next = new_attr; in sdp_parse_attribute()
857 sdp_free_attribute(new_attr); in sdp_parse_attribute()