Lines Matching refs:new_list
580 char **new_list = NULL;
593 new_list = talloc_array(mem_ctx, char *, 2);
599 new_list = talloc_realloc(mem_ctx, old_list, char *, c + 2);
602 if (new_list == NULL) {
607 new_list[c] = talloc_strdup(new_list, string);
608 if (new_list[c] == NULL) {
610 talloc_free(new_list);
614 new_list[c + 1] = NULL;
616 *list_p = new_list;