Coverity issue: 711827

This commit is contained in:
Ward Fisher 2014-07-31 15:59:47 -06:00
parent 1ddaa1d310
commit d18b93e0d2

View File

@ -551,6 +551,7 @@ fprintf(stderr," segment=%s hasstringdim=%d\n",
dapodom_next(odom);
}
dapodom_free(odom);
odom = NULL;
} else {/* scalar instance */
ncstat = movetofield(nccomm,currentcontent,path,depth,xgetvar,dimindex,memory,segments);
if(ocstat != OC_NOERR) {THROWCHK(ocstat); goto done;}
@ -608,6 +609,7 @@ done:
oc_data_free(conn,fieldcontent);
oc_data_free(conn,reccontent);
if(ocstat != OC_NOERR) ncstat = ocerrtoncerr(ocstat);
if(odom) dapodom_free(odom);
return THROW(ncstat);
}