Changeset 7115 for trunk/psLib/src/sys/psString.c
- Timestamp:
- May 12, 2006, 10:56:48 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.c
r7015 r7115 13 13 * @author David Robbins, MHPCC 14 14 * 15 * @version $Revision: 1.2 8$ $Name: not supported by cvs2svn $16 * @date $Date: 2006-05- 01 00:57:07$15 * @version $Revision: 1.29 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2006-05-13 08:56:48 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 230 230 231 231 psList *values = psListAlloc(NULL); // The list of values to return 232 PS_ASSERT_PTR_NON_NULL(string, values); 232 if (string == NULL) 233 return values; 234 // XXX this should not generate an error : it is a valid case 235 // PS_ASSERT_PTR_NON_NULL(string, values); 233 236 234 237 char *next = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
