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

Fix missing initialization.

* This fixes a bug introduced in b1c602b5 that manifests most
  typically in optimized binaries.
parent 3f2e3a80
Branches cdi-1.7.x
No related tags found
No related merge requests found
Pipeline #52006 passed
......@@ -465,6 +465,8 @@ vlist_generate_zaxis(int vlistID, int zaxistype, int nlevels, const double *leve
query.zaxistype = zaxistype;
query.nlevels = nlevels;
query.levels = levels;
query.lbounds = lbounds;
query.ubounds = ubounds;
if ((zaxisglobdefined = (cdiResHFilterApply(getZaxisOps(), vgzZAxisSearch, &query) == CDI_APPLY_STOP)))
zaxisID = query.resIDValue;
......
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