Lines Matching +defs:list +defs:length
63 char **list;
66 length;
79 && rep.length <= (SIZE_MAX >> 2)
82 list = FSmallocarray(rep.num_catalogues, sizeof(char *));
83 rlen = (rep.length << 2) - SIZEOF(fsGetCataloguesReply);
85 if ((!list) || (!c)) {
86 if (list)
87 FSfree(list);
98 length = *c;
100 list[i] = c + 1; /* skip length */
101 c += length + 1; /* find next length */
102 length = *c;
103 *c = '\0'; /* change length to NULL */
106 list = (char **) NULL;
110 return list;