Skip to content
Snippets Groups Projects
Commit 83e28e4e authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix missing free call.

parent 2751d761
No related branches found
No related tags found
No related merge requests found
......@@ -225,6 +225,7 @@ vlist_delete(vlist_t *vlistptr)
if ( vars[varID].stdname ) Free(vars[varID].stdname);
if ( vars[varID].units ) Free(vars[varID].units);
if ( vars[varID].ensdata ) Free(vars[varID].ensdata);
if ( vars[varID].extra ) Free(vars[varID].extra);
if ( vlistptr->vars[varID].opt_grib_kvpair )
{
......
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