mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
dtcm: Coverity 88494
This commit is contained in:
parent
2e0716d5cf
commit
261adc44d0
1 changed files with 5 additions and 3 deletions
|
@ -299,10 +299,12 @@ _DtCm_rtable_check_3_svc(Table_Args_3 *args, struct svc_req *svcrq)
|
|||
res = 0;
|
||||
|
||||
newargs = _DtCm_tableargs3_to_tableargs4(args);
|
||||
newres = _DtCm_rtable_check_4_svc(newargs, svcrq);
|
||||
res = _DtCm_tablestat4_to_tablestat3(*newres);
|
||||
if(newargs) {
|
||||
newres = _DtCm_rtable_check_4_svc(newargs, svcrq);
|
||||
res = _DtCm_tablestat4_to_tablestat3(*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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue