| # | Line 101 | Line 101 | initmask() /* initialize gaussian lookup table */ | |
|---|---|---|
| 101 | ringsum = (float *)malloc((orad+1)*sizeof(float)); | |
| 102 | ringwt = (short *)malloc((orad+1)*sizeof(short)); | |
| 103 | warr = (float *)malloc(obarsize*obarsize*sizeof(float)); | |
| 104 | < | if (ringsum == NULL | ringwt == 0 | warr == NULL) |
| 104 | > | if ((ringsum == NULL) | (ringwt == 0) | (warr == NULL)) |
| 105 | goto memerr; | |
| 106 | return; | |
| 107 | memerr: | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |