IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 12, 2006, 10:56:48 PM (20 years ago)
Author:
magnier
Message:

dropped error message for NULL input string in psStringSplit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psString.c

    r7015 r7115  
    1313 *  @author David Robbins, MHPCC
    1414 *
    15  *  @version $Revision: 1.28 $ $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 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    230230
    231231    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);
    233236
    234237    char *next = NULL;
Note: See TracChangeset for help on using the changeset viewer.