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
|
@ -339,11 +339,13 @@ _DtCm_rtable_size_2_svc(Table_Args_2 *args, struct svc_req *svcrq)
|
||||||
static int size;
|
static int size;
|
||||||
Table_Args_4 *newargs;
|
Table_Args_4 *newargs;
|
||||||
|
|
||||||
newargs = _DtCm_tableargs2_to_tableargs4(args);
|
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);
|
return(&size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue