IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 4, 2006, 11:23:36 AM (20 years ago)
Author:
jhoblitt
Message:

VERSION 0.0.63

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/src/ippdb.c

    r10328 r10433  
    2020/*
    2121 *
    22  * This file was generated by glueforge 0.33
     22 * This file was generated by glueforge 0.34
    2323 *
    2424 * Do NOT directly edit this file.
     
    131131            METADATAITEM_STRIFY_CASE(PS_DATA_F64, "%f", F64);
    132132            case PS_DATA_STRING:
    133                 psStringSubstitute(str, " ", "_");
    134                 psStringAppend(&str, "%s", item->data.str);
     133                if (item->data.str) {
     134                    psString tmpStr = psStringCopy(item->data.str);
     135                    psStringSubstitute(tmpStr, "_", " ");
     136                    psStringAppend(&str, "%s", tmpStr);
     137                    psFree(tmpStr);
     138                }
    135139                break;
    136140            case PS_DATA_BOOL:
Note: See TracChangeset for help on using the changeset viewer.