projects
/
oweals
/
cde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e0716d
)
dtcm: Coverity 88494
author
Peter Howkins
<flibble@users.sf.net>
Fri, 13 Jul 2018 17:39:35 +0000
(18:39 +0100)
committer
Peter Howkins
<flibble@users.sf.net>
Fri, 13 Jul 2018 17:39:35 +0000
(18:39 +0100)
cde/programs/dtcm/server/rtable3.c
patch
|
blob
|
history
diff --git
a/cde/programs/dtcm/server/rtable3.c
b/cde/programs/dtcm/server/rtable3.c
index 6feef6fd3b22784440135fd4838fcb68609f7089..db3aba4ada7091a6e4281268d3c73c43bc87cfb8 100644
(file)
--- a/
cde/programs/dtcm/server/rtable3.c
+++ b/
cde/programs/dtcm/server/rtable3.c
@@
-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);
}