- t2ex
- bsd_source/lib/libc/src_bsd/search/hcreate.c - 5.7KB - 186 lines
142: //free(ie->ent.key);
143: free(ie);
144: }
- More results from hcreate.c
- bsd_source/lib/libc/src_bsd/search/tsearch.c - 3.8KB - 119 lines
88: }
89: free((struct node_t *) *rootp); /* D4: Free node */
90: *rootp = q; /* link parent to new node */
- bsd_source/lib/libc/src_bsd/stdio/fclose.c - 2.6KB - 64 lines
53: if (fp->_flags & __SMBF)
54: free((char *)fp->_bf._base);
55: if (HASUB(fp))
- bsd_source/lib/libc/src_bsd/stdio/freopen.c - 6.5KB - 172 lines
108: if (fp->_flags & __SMBF)
109: free((char *)fp->_bf._base);
110: fp->_w = 0;
- bsd_source/lib/libc/src_bsd/stdio/local.h - 3.7KB - 102 lines
87: if (_UB(fp)._base != (fp)->_ubuf) \
88: free(_UB(fp)._base); \
89: _UB(fp)._base = NULL; \
- More results from local.h
- bsd_source/lib/libc/src_bsd/stdio/setvbuf.c - 5.6KB - 154 lines
72: if (flags & __SMBF)
73: free((void *)fp->_bf._base);
74: flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
- bsd_source/lib/libc/src_bsd/stdio/vfprintf.c - 58.5KB - 1,551 lines
206: nbytes, &mbs)) == (size_t)-1) {
207: free(convbuf);
208: /*errno = EILSEQ*/;
- More results from vfprintf.c
- bsd_source/lib/libc/src_bsd/stdlib/misc.c - 22.8KB - 908 lines
103: #else
104: free((void*)v);
105: #endif
- bsd_source/lib/libc/src_bsd/stdlib/realpath.c - 8.9KB - 212 lines
80: if (mem_allocated)
81: free(resolved);
82: else
- More results from realpath.c
- bsd_source/lib/libc/src_bsd/time/strftime.c - 33.3KB - 791 lines
736: if (lbuf)
737: free(lbuf);
738: lbuf = NULL;
- More results from strftime.c