IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 16813


Ignore:
Timestamp:
Mar 4, 2008, 2:54:30 PM (18 years ago)
Author:
Paul Price
Message:

Propagating allocation information.

File:
1 edited

Legend:

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

    r16216 r16813  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.166 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2008-01-24 01:00:09 $
     14 *  @version $Revision: 1.167 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2008-03-05 00:54:30 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    224224    if (comment == NULL) {
    225225        // Per SDRS, null isn't allowed, must use "" instead
    226         metadataItem->comment = psStringCopy("");
     226        metadataItem->comment = p_psStringCopy(file, lineno, func, "");
    227227    } else {
    228         metadataItem->comment = psStringCopy(comment);
     228        metadataItem->comment = p_psStringCopy(file, lineno, func, comment);
    229229    }
    230230
     
    236236
    237237    // Allocate and set metadata item name
    238     metadataItem->name = psStringCopy(name);
     238    metadataItem->name = p_psStringCopy(file, lineno, func, name);
    239239
    240240    // Set metadata item value
Note: See TracChangeset for help on using the changeset viewer.