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 89544

This commit is contained in:
Peter Howkins 2018-07-13 18:14:35 +01:00
parent 80d5547e00
commit e3b77b6cb2

View file

@ -340,9 +340,11 @@ _DtCm_rtable_size_2_svc(Table_Args_2 *args, struct svc_req *svcrq)
Table_Args_4 *newargs;
newargs = _DtCm_tableargs2_to_tableargs4(args);
if(newargs) {
size = (*(_DtCm_rtable_size_4_svc(newargs, svcrq)));
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(&size);
}