Changeset 3682 for trunk/psLib/src/collections/psList.c
- Timestamp:
- Apr 7, 2005, 10:27:42 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.c
r3264 r3682 6 6 * @author Robert Daniel DeSonia, MHPCC 7 7 * 8 * @version $Revision: 1.3 4$ $Name: not supported by cvs2svn $9 * @date $Date: 2005-0 2-17 19:26:23$8 * @version $Revision: 1.35 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-04-07 20:27:41 $ 10 10 * 11 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 45 45 psArray* iterators = list->iterators; 46 46 for (int i = 0; i < iterators->n; i++) { 47 p _psMemSetDeallocator(iterators->data[i], NULL);47 psMemSetDeallocator(iterators->data[i], NULL); 48 48 } 49 49 … … 129 129 psList* list = psAlloc(sizeof(psList)); 130 130 131 p _psMemSetDeallocator(list, (psFreeFcn) listFree);131 psMemSetDeallocator(list, (psFreeFcn) listFree); 132 132 133 133 list->size = 0; … … 153 153 psListIterator* iter = psAlloc(sizeof(psListIterator)); 154 154 155 p _psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree);155 psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree); 156 156 157 157 // initialize the attributes
Note:
See TracChangeset
for help on using the changeset viewer.
