1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

dtcm: Coverity 88272

This commit is contained in:
Peter Howkins 2018-07-13 17:52:14 +01:00
parent 15bef0fb9a
commit 251143f288

View file

@ -250,12 +250,14 @@ _DtCm_rtable_change_instance_2_svc(Table_Args_2 *args, struct svc_req *svcrq)
if (res!=NULL) xdr_free ((xdrproc_t)_DtCm_xdr_Table_Res_2, (char*)res);
newargs = _DtCm_tableargs2_to_tableargs4(args);
newargs->args.Args_4_u.apptid.option = do_one_4;
newres = _DtCm_rtable_change_4_svc(newargs, svcrq);
res = _DtCm_tableres4_to_tableres2(newres);
if(newargs) {
newargs->args.Args_4_u.apptid.option = do_one_4;
newres = _DtCm_rtable_change_4_svc(newargs, svcrq);
res = _DtCm_tableres4_to_tableres2(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);
}