Opened 21 years ago
Closed 21 years ago
#617 closed defect (fixed)
pmPSF.c psPolynomial2DAlloc has wrong argument order
| Reported by: | eugene | Owned by: | |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | objects | Version: | 0.9.0 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
the call is written as:
psf->params->data[i] = psPolynomial2DAlloc(PS_POLYNOMIAL_ORD, 1, 1);
the correct form is:
psf->params->data[i] = psPolynomial2DAlloc(1, 1, PS_POLYNOMIAL_ORD);
I've fixed this is rel9_eam_b0
Note:
See TracTickets
for help on using tickets.

I patched pmPSF.c from the branch eam_rel9_b0. The rest of that branch has issues (as it it doesn't
compile), so I just selectively merged that file to fix this problem.
-rdd