From: Peter Howkins Date: Fri, 13 Jul 2018 17:04:33 +0000 (+0100) Subject: dtcm: Coverity 88669 X-Git-Tag: 2.3.0a~105 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a4ba36aa0a963aac10592489211fdc392d7073e5;p=oweals%2Fcde.git dtcm: Coverity 88669 --- diff --git a/cde/programs/dtcm/server/rtable2.c b/cde/programs/dtcm/server/rtable2.c index 80c12ee5..3969ca71 100644 --- a/cde/programs/dtcm/server/rtable2.c +++ b/cde/programs/dtcm/server/rtable2.c @@ -131,13 +131,15 @@ _DtCm_rtable_lookup_range_2_svc(Table_Args_2 *args, struct svc_req *svcrq) if (res!=NULL) xdr_free ((xdrproc_t)_DtCm_xdr_Table_Res_2, (char*)res); res = NULL; - newargs = _DtCm_tableargs2_to_tableargs4(args); - newres = _DtCm_rtable_lookup_range_4_svc(newargs, svcrq); + newargs = _DtCm_tableargs2_to_tableargs4(args); + if(newargs) { + newres = _DtCm_rtable_lookup_range_4_svc(newargs, svcrq); - res = _DtCm_tableres4_to_tableres2(newres); - - if (newargs!=NULL) xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs); + res = _DtCm_tableres4_to_tableres2(newres); + xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs); + } + return(res); }