[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[netCDF #AMN-318885]: Possible memory leak in ncgen



This was assigned Jira Number NCF-195
(https://www.unidata.ucar.edu/jira/browse/NCF-195).
It has been fixed and will appear in the snapshot
available tomorrow.

If you want to fix it yourself.
Edit the file ncgen/bytebuffer.c

and replace the function bbSetlength()
with this code:

int
bbSetlength(Bytebuffer* bb, const unsigned int sz)
{
  if(bb == NULL) return bbFail();
  if(bb->length < sz) {
      if(!bbSetalloc(bb,sz)) return bbFail();
  }
  bb->length = sz;
  return TRUE;
}



=Dennis Heimbigner
  Unidata


Ticket Details
===================
Ticket ID: AMN-318885
Department: Support netCDF
Priority: Normal
Status: Closed