IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Opened 21 years ago

Closed 21 years ago

Last modified 21 years ago

#450 closed defect (fixed)

psArrayElementFree() ?

Reported by: jhoblitt Owned by: eugene
Priority: high Milestone:
Component: IPP SDRS Version: unspecified
Severity: minor Keywords:
Cc: Eric.VanAlst@…

Description

This function is currently defined in pslib. Is this worth adding to the SDRS
or should it be marked static?

void psArrayElementFree(psArray* psArr)
{

if (psArr == NULL) {

return;

}

for (psS32 i = 0; i < psArr->n; i++) {

psFree(psArr->data[i]);
psArr->data[i] = NULL;

}

}

Change History (2)

comment:1 by Paul Price, 21 years ago

Cc: Eric.VanAlst@… added
Resolution: fixed
Status: newclosed

It might be useful to the user. I have put it in the SDRS.

comment:2 by Paul Price, 21 years ago

psArrayElementsFree is now in the SDRS (note different spelling).

Note: See TracTickets for help on using tickets.