Searched refs:fmtbuff_heap (Results 1 - 1 of 1) sorted by relevance

/netbsd-current/external/bsd/libarchive/dist/tar/
H A Dutil.c97 char *fmtbuff_heap; /* If fmtbuff_stack is too small, we use malloc */ local
98 char *fmtbuff; /* Pointer to fmtbuff_stack or fmtbuff_heap. */
108 fmtbuff_heap = NULL;
127 fmtbuff_heap[length-1] = '\0';
130 free(fmtbuff_heap);
131 fmtbuff_heap = malloc(fmtbuff_length);
134 if (fmtbuff_heap != NULL) {
135 fmtbuff = fmtbuff_heap;
153 free(fmtbuff_heap);
195 free(fmtbuff_heap);
[all...]

Completed in 75 milliseconds