IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 4:35:25 PM (20 years ago)
Author:
drobbin
Message:

Added null check to PS_ASSERT_PTR in psAssert.h
edited formatting of output of psArrayRemoveData tests
Edited PolynomialXDto/fromMetadata to reflect recent changes to mask handling and added 1D cases.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psAssert.h

    r9538 r9597  
    1313#define PS_ASSERT_PTR(NAME, RVAL) \
    1414{ \
     15    if (NAME == NULL) return(RVAL); \
    1516    psMemBlock *mb = (psMemBlock*)(NAME) - 1; \
    1617    if (mb->startblock != P_PS_MEMMAGIC || mb->endblock != P_PS_MEMMAGIC || \
Note: See TracChangeset for help on using the changeset viewer.