- Timestamp:
- 09/29/15 10:17:59 (5 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- e63d80d
- Parents:
- f6366a7
- Location:
- lib/data-struct
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/data-struct/linked_list.c
r03aca91 r02cbc14 119 119 if (ret) { 120 120 memcpy(item, n->data, l->element_size); 121 free(n->data); 121 122 free(n); 122 123 } … … 150 151 if (ret) { 151 152 memcpy(item, n->data, l->element_size); 153 free(n->data); 152 154 free(n); 153 155 } -
lib/data-struct/linked_list.h
rcb39d35 r02cbc14 1 #include " ../libtrace.h"1 #include "libtrace.h" 2 2 3 3 #ifndef LIBTRACE_LIST_H
Note: See TracChangeset
for help on using the changeset viewer.