dtcm: Coverity 88250
authorPeter Howkins <flibble@users.sf.net>
Fri, 13 Jul 2018 17:49:37 +0000 (18:49 +0100)
committerPeter Howkins <flibble@users.sf.net>
Fri, 13 Jul 2018 17:49:37 +0000 (18:49 +0100)
cde/programs/dtcm/server/rtable3.c

index 3bf6d79fc0d383ddcd19f4e06c05074f4e08936a..944aa17958f175f4dc303084b3138cb92805e37f 100644 (file)
@@ -438,10 +438,12 @@ _DtCm_rtable_abbreviated_lookup_key_range_3_svc(Table_Args_3 *args, struct svc_r
        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_abbreviated_lookup_key_range_4_svc(newargs, svcrq);
-        res = _DtCm_tableres4_to_tableres3(newres);
+        if(newargs) {
+                newres = _DtCm_rtable_abbreviated_lookup_key_range_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); 
 }