IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1429


Ignore:
Timestamp:
Aug 9, 2004, 1:02:43 PM (22 years ago)
Author:
harman
Message:

Minor corrections from testing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psMetadata.c

    r1416 r1429  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2004-08-09 19:30:44 $
     14*  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2004-08-09 23:02:43 $
    1616*
    1717*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    424424    psMetadataItem *entry = NULL;
    425425
     426
     427    if (md == NULL) {
     428        psError(__func__, "Null metadata collection not allowed");
     429        return NULL;
     430    }
     431
    426432    mdTable = md->table;
    427433    if (mdTable == NULL) {
     
    449455    psMetadataItem *entry = NULL;
    450456
     457
     458    if (md == NULL) {
     459        psError(__func__, "Null metadata collection not allowed");
     460        return NULL;
     461    }
     462
    451463    mdList = md->list;
    452464    if (mdList == NULL) {
     
    467479{
    468480    psList *mdList = NULL;
     481
     482    if (md == NULL) {
     483        psError(__func__, "Null metadata collection not allowed");
     484        return false;
     485    }
    469486
    470487    mdList = md->list;
Note: See TracChangeset for help on using the changeset viewer.