- Timestamp:
- Dec 13, 2015, 5:50:46 AM (11 years ago)
- Location:
- branches/eam_branches/ipp-20151113
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Ohana/src/opihi/dvo/coordmosaic.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20151113
-
branches/eam_branches/ipp-20151113/Ohana/src/opihi/dvo/coordmosaic.c
r36833 r39266 88 88 gfits_free_matrix (&bufX[0].matrix); 89 89 gfits_free_header (&bufX[0].header); 90 CreateBuffer (bufX, Nx, Ny, -32, 0.0, 1.0); // initialized to 0.0 here90 if (!CreateBuffer (bufX, Nx, Ny, -32, 0.0, 1.0)) return FALSE; // initialized to 0.0 here 91 91 strcpy (bufX[0].file, "(empty)"); 92 92 93 93 gfits_free_matrix (&bufY[0].matrix); 94 94 gfits_free_header (&bufY[0].header); 95 CreateBuffer (bufY, Nx, Ny, -32, 0.0, 1.0); // initialized to 0.0 here95 if (!CreateBuffer (bufY, Nx, Ny, -32, 0.0, 1.0)) return FALSE; // initialized to 0.0 here 96 96 strcpy (bufY[0].file, "(empty)"); 97 97 … … 224 224 } 225 225 226 # undef ESCAPE 226 227 # define ESCAPE(MSG) { \ 227 228 if (src) fclose (src); \
Note:
See TracChangeset
for help on using the changeset viewer.
