dtcm: Coverity 89499
authorPeter Howkins <flibble@users.sf.net>
Fri, 13 Jul 2018 17:09:23 +0000 (18:09 +0100)
committerPeter Howkins <flibble@users.sf.net>
Fri, 13 Jul 2018 17:09:23 +0000 (18:09 +0100)
cde/programs/dtcm/server/rtable2.c

index c4438f136644cc3c3d17b350d46081553e3342a1..00d04af3ba83b9f7c8f76daf699b284cd1b49c30 100644 (file)
@@ -299,14 +299,16 @@ _DtCm_rtable_check_2_svc(Table_Args_2 *args, struct svc_req *svcrq)
         Table_Args_4 *newargs;     
         Table_Status_4 *newres;    
        
-        newargs = _DtCm_tableargs2_to_tableargs4(args);    
-        newres = _DtCm_rtable_check_4_svc(newargs, svcrq);    
+        newargs = _DtCm_tableargs2_to_tableargs4(args);
+        if(newargs) {
+                newres = _DtCm_rtable_check_4_svc(newargs, svcrq);
               
-        res = _DtCm_tablestat4_to_tablestat2(*newres);   
+                res = _DtCm_tablestat4_to_tablestat2(*newres);
      
-        if (newargs!=NULL) xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs);     
-         
-        return(&res); 
+                xdr_free((xdrproc_t)_DtCm_xdr_Table_Args_4, (char*)newargs);
+         }
+
+        return(&res);
 }
 
 /*     PROC #13        */