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:
parent
80d5547e00
commit
e3b77b6cb2
1 changed files with 6 additions and 4 deletions
|
@ -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);
|
||||
size = (*(_DtCm_rtable_size_4_svc(newargs, svcrq)));
|
||||
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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue