Changeset 4432 for trunk/psLib/src/xml/psXML.c
- Timestamp:
- Jun 29, 2005, 2:04:12 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/xml/psXML.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/xml/psXML.c
r4409 r4432 10 10 * @author Eric Van Alst, MHPCC 11 11 * 12 * @version $Revision: 1.3 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06- 28 20:17:52 $12 * @version $Revision: 1.34 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-30 00:04:12 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 157 157 158 158 // Adds '\0' to end of string and +1 to sLen 159 cleaned = psStringNCopy(ptrB, sLen); 159 if(sLen < 0 ) { 160 cleaned = NULL; 161 } else { 162 cleaned = psStringNCopy(ptrB, sLen); 163 } 160 164 161 165 return cleaned;
Note:
See TracChangeset
for help on using the changeset viewer.
