IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 16, 2007, 5:10:27 PM (19 years ago)
Author:
jhoblitt
Message:

VERSION 1.1.26

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/tests/alloc.c

    r14169 r14252  
    11001100        diffInputSkyfileRow *object;
    11011101
    1102         object = diffInputSkyfileRowAlloc(-64, -64, "a string", "a string", "a string", true    );
     1102        object = diffInputSkyfileRowAlloc(-64, true, -64, -64, "a string", "a string", "a string"    );
    11031103
    11041104        if (!object) {
     
    11101110            exit(EXIT_FAILURE);
    11111111        }
     1112        if (!object->template == true) {
     1113            psFree(object);
     1114            exit(EXIT_FAILURE);
     1115        }
     1116        if (!object->stack_id == -64) {
     1117            psFree(object);
     1118            exit(EXIT_FAILURE);
     1119        }
    11121120        if (!object->warp_id == -64) {
    11131121            psFree(object);
     
    11231131        }
    11241132        if (strncmp(object->kind, "a string", MAX_STRING_LENGTH)) {
    1125             psFree(object);
    1126             exit(EXIT_FAILURE);
    1127         }
    1128         if (!object->template == true) {
    11291133            psFree(object);
    11301134            exit(EXIT_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.