[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[netCDF #MNX-138856]: ncdump bug
- Subject: [netCDF #MNX-138856]: ncdump bug
- Date: Mon, 27 Nov 2006 10:42:51 -0700
Hi Chris,
I'm having trouble matching your line numbers with our development release
without a little more context or knowing the version of netCDF you're
debugging. I see that in our current development code we already have:
for (id = 0; id < varp->ndims; id++) {
shapelen += strlen(dims[varp->dims[id]].name) + 1;
}
shape = (char *) emalloc(shapelen);
shape[0] = 0;
for (id = 0; id < varp->ndims; id++) {
strlcat(shape, dims[varp->dims[id]].name, shapelen);
strlcat(shape, id < varp->ndims-1 ? " " : "", shapelen);
}
in our pr_shape(ncvar_t* varp, ncdim_t *dims) function. Is that the code you
were referring to?
--Russ
Russ Rew UCAR Unidata Program
address@hidden http://www.unidata.ucar.edu
Ticket Details
===================
Ticket ID: MNX-138856
Department: Support netCDF
Priority: Normal
Status: Closed