Skip to content
Snippets Groups Projects
Commit a89805a6 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Replace variable length arrays.

parent 05476d30
No related branches found
No related tags found
No related merge requests found
......@@ -1299,7 +1299,10 @@ void cdf_def_zaxis_hybrid_cf(stream_t *streamptr, int type, int *ncvaridp, int z
int ncbvarid = CDI_UNDEFID;
int nvdimID = CDI_UNDEFID;
double lbounds[dimlen], ubounds[dimlen], levels[dimlen];
double *buffer = (double *) malloc(4*dimlen*sizeof(double));
double *levels = buffer;
double *lbounds = buffer + 2*dimlen;
double *ubounds = buffer + 3*dimlen;
if ( zaxisInqLevels(zaxisID, NULL) )
zaxisInqLevels(zaxisID, levels);
......@@ -1362,7 +1365,7 @@ void cdf_def_zaxis_hybrid_cf(stream_t *streamptr, int type, int *ncvaridp, int z
if ( ncbvarid != CDI_UNDEFID )
{
double zbounds[2*dimlen];
double *zbounds = buffer;
for ( size_t i = 0; i < dimlen; ++i )
{
zbounds[2*i ] = lbounds[i];
......@@ -1376,6 +1379,8 @@ void cdf_def_zaxis_hybrid_cf(stream_t *streamptr, int type, int *ncvaridp, int z
if ( *dimID == CDI_UNDEFID )
streamptr->zaxisID[zaxisindex] = type == ZAXIS_HYBRID
? streamptr->vct.mlevID : streamptr->vct.ilevID;
free(buffer);
}
static
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment