IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 6, 2006, 6:20:10 PM (20 years ago)
Author:
drobbin
Message:

changed getToken to see if it has gotten to NULL before incrementing past the token.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psTime.c

    r6269 r6536  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.81 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-02-01 00:17:44 $
     12 *  @version $Revision: 1.82 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-03-07 04:20:10 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    149149
    150150        // Move to end of token
    151         (*inString) += (sLen+1);
     151        //        (*inString) += (sLen+1);
     152        (*inString) += sLen;
     153        if (**inString != '\0' ) {
     154            (*inString)++;
     155        }
    152156
    153157    } else if(**inString!='\0' && sLen==0) {
Note: See TracChangeset for help on using the changeset viewer.