IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11713


Ignore:
Timestamp:
Feb 8, 2007, 1:36:04 PM (19 years ago)
Author:
jhoblitt
Message:

missing semicolons

Location:
trunk/ippTools/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/camtool.c

    r11702 r11713  
    190190    if (!p_psDBRunQuery(config->dbh, query)) {
    191191        psError(PS_ERR_UNKNOWN, false, "database error");
    192         psFree(query)
    193         return false;
    194     }
    195     psFree(query)
     192        psFree(query);
     193        return false;
     194    }
     195    psFree(query);
    196196
    197197    psArray *output = p_psDBFetchResult(config->dbh);
  • trunk/ippTools/src/chiptool.c

    r11702 r11713  
    345345
    346346        psString whereClause = psDBGenerateWhereConditionSQL(config->where, "p2PendingImfile");
    347         psFree(where)
     347        psFree(where);
    348348        if (whereClause) {
    349349            psStringAppend(&query, " AND %s", whereClause);
  • trunk/ippTools/src/detselect.c

    r11702 r11713  
    276276        // XXX check psError here
    277277        psError(PS_ERR_UNKNOWN, false, "no detNormalizedImfile rows found");
    278         psFree(output)
     278        psFree(output);
    279279        return true;
    280280    }
  • trunk/ippTools/src/dettool.c

    r11702 r11713  
    12721272
    12731273    // discard the resultarray
    1274     psFree(detRuns)
     1274    psFree(detRuns);
    12751275
    12761276    // set the det_id to 0/NULL so the database can assign it
     
    24742474        // XXX check psError here
    24752475        psError(PS_ERR_UNKNOWN, false, "no detProcessedExp rows found");
    2476         psFree(output)
     2476        psFree(output);
    24772477        return true;
    24782478    }
     
    38743874        // XXX check psError here
    38753875        psError(PS_ERR_UNKNOWN, false, "no detNormalizedExp rows found");
    3876         psFree(output)
     3876        psFree(output);
    38773877        return true;
    38783878    }
     
    41914191        // XXX check psError here
    41924192        psError(PS_ERR_UNKNOWN, false, "no detNormalizedImfile rows found");
    4193         psFree(output)
     4193        psFree(output);
    41944194        return true;
    41954195    }
     
    51075107        // XXX check psError here
    51085108        psError(PS_ERR_UNKNOWN, false, "no detResidExp rows found");
    5109         psFree(output)
     5109        psFree(output);
    51105110        return true;
    51115111    }
Note: See TracChangeset for help on using the changeset viewer.