filecomplete.c | 470 char **match_list = NULL, *retstr, *prevstr; local in function:completion_matches 476 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) { 491 match_list[++matches] = retstr; 508 retstr = el_calloc(max_equal + 1, sizeof(*retstr)); 509 if (retstr == NULL) { 513 (void)strlcpy(retstr, match_list[1], max_equal + 1); 514 match_list[0] = retstr;
|