IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2007, 3:47:14 PM (19 years ago)
Author:
Paul Price
Message:

Missed another instance.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStac/src/ppStacOptions.c

    r13247 r13270  
    101101    options->inFiles = psArrayAlloc(numInputs);
    102102    for (int i = 0; i < numInputs; i++) {
    103         const char *inName = argv[i + 2];
     103        psString inName = pmConfigConvertFilename(argv[i + 2], config, false);
    104104        psFits *inFile = psFitsOpen(inName, "r");
    105105        if (!inFile) {
    106106            psError(PS_ERR_IO, false, "Unable to open input file %s.\n", inName);
    107107            psFree(options);
     108            psFree(inName);
    108109            return NULL;
    109110        }
     111        psFree(inName);
    110112        options->inFiles->data[i] = inFile;
    111113    }
Note: See TracChangeset for help on using the changeset viewer.