From: Peter Howkins Date: Fri, 13 Jul 2018 17:35:25 +0000 (+0100) Subject: dtcm: Coverity 89595 X-Git-Tag: 2.3.0a~88 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a047b0be0ed2d3d19952381a8b31360e8e430712;p=oweals%2Fcde.git dtcm: Coverity 89595 --- diff --git a/cde/programs/dtcm/server/rtable3.c b/cde/programs/dtcm/server/rtable3.c index 412da57f..855b5d93 100644 --- a/cde/programs/dtcm/server/rtable3.c +++ b/cde/programs/dtcm/server/rtable3.c @@ -233,11 +233,13 @@ _DtCm_rtable_change_3_svc(Table_Args_3 *args, struct svc_req *svcrq) if (res!=NULL) xdr_free ((xdrproc_t)_DtCm_xdr_Table_Res_3, (char*)res); res = NULL; - newargs = _DtCm_tableargs3_to_tableargs4(args); - newres = _DtCm_rtable_change_4_svc(newargs, svcrq); - res = _DtCm_tableres4_to_tableres3(newres); + newargs = _DtCm_tableargs3_to_tableargs4(args); + if(newargs) { + newres = _DtCm_rtable_change_4_svc(newargs, svcrq); + res = _DtCm_tableres4_to_tableres3(newres); - if (newargs!=NULL) xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs); + xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs); + } return(res); }