IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 10, 2008, 4:02:14 PM (18 years ago)
Author:
jhoblitt
Message:

MERGE from HEAD

Location:
branches/cleanup/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/cleanup/ippTools/src

    • Property svn:ignore
      •  

        old new  
        2323difftool
        2424stacktool
         25faketool
        2526dettool
        2627detselect
  • branches/cleanup/ippTools/src/pztool.c

    r17700 r18076  
    111111            camera,
    112112            telescope,
    113             uri
     113            uri,
     114            NULL  // epoch
    114115        )) {
    115116        psError(PS_ERR_UNKNOWN, false, "database error");
     
    370371            class_id,
    371372            uri,
    372             code
     373            code,
     374            NULL    // epoch
    373375    )) {
    374376        psError(PS_ERR_UNKNOWN, false, "database error");
     
    484486
    485487        pzDownloadExpRow *doneExp = pzDownloadExpObjectFromMetadata(row);
     488        if (!doneExp) {
     489            psError(PS_ERR_UNKNOWN, false, "pzDownloadExpObjectFromMetadata() failed");
     490            psFree(doneExp);
     491            psFree(output);
     492            return false;
     493        }
    486494
    487495        if (!newExpInsert(config->dbh,
     
    497505                    tess_id,            // tess_id
    498506                    end_stage,          // end_stage
    499                    label
     507                    label,
     508                    NULL                // epoch
    500509                )
    501510        ) {
     
    515524                "       %" PRId64 "," // exp_id
    516525                "       pzDownloadImfile.class_id," // tmp_class_id
    517                 "       pzDownloadImfile.uri" // uri
     526                "       pzDownloadImfile.uri," // uri
     527                "       NULL" // epoch
    518528                "   FROM pzDownloadImfile"
    519529                "   WHERE"
Note: See TracChangeset for help on using the changeset viewer.