summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-03-13 03:56:24 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:15:23 -0500
commit6621acc68f9a65540330d5c0d07db2488a3e8678 (patch)
tree3c1d9367a7d134794d3f7b5ab59eb010f7fb3bf1
parent07d8b02d3dddf7322e096f3f0a7cc1c8fa709fa3 (diff)
downloadsamba-6621acc68f9a65540330d5c0d07db2488a3e8678.tar.gz
samba-6621acc68f9a65540330d5c0d07db2488a3e8678.tar.xz
samba-6621acc68f9a65540330d5c0d07db2488a3e8678.zip
r14284: Fix coverity bug #103. Make code clearer - probably
not a real issue but this code is easier to read. Jeremy.
-rw-r--r--source/rpc_server/srv_spoolss_nt.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/source/rpc_server/srv_spoolss_nt.c b/source/rpc_server/srv_spoolss_nt.c
index e86b36a5fe4..475862bc4c9 100644
--- a/source/rpc_server/srv_spoolss_nt.c
+++ b/source/rpc_server/srv_spoolss_nt.c
@@ -7241,6 +7241,8 @@ WERROR enumports_hook( int *count, char ***lines )
int ret;
int fd;
+ *count = 0;
+ *lines = NULL;
/* if no hook then just fill in the default port */
@@ -7259,9 +7261,9 @@ WERROR enumports_hook( int *count, char ***lines )
ret = smbrun(command, &fd);
DEBUG(10,("Returned [%d]\n", ret));
if (ret != 0) {
- if (fd != -1)
+ if (fd != -1) {
close(fd);
-
+ }
return WERR_ACCESS_DENIED;
}
@@ -7289,8 +7291,11 @@ static WERROR enumports_level_1(RPC_BUFFER *buffer, uint32 offered, uint32 *need
char **qlines;
int numlines;
- if ( !W_ERROR_IS_OK(result = enumports_hook( &numlines, &qlines )) )
+ result = enumports_hook( &numlines, &qlines );
+ if (!W_ERROR_IS_OK(result)) {
+ file_lines_free(qlines);
return result;
+ }
if(numlines) {
if((ports=SMB_MALLOC_ARRAY( PORT_INFO_1, numlines )) == NULL) {
@@ -7304,9 +7309,8 @@ static WERROR enumports_level_1(RPC_BUFFER *buffer, uint32 offered, uint32 *need
DEBUG(6,("Filling port number [%d] with port [%s]\n", i, qlines[i]));
fill_port_1(&ports[i], qlines[i]);
}
-
- file_lines_free(qlines);
}
+ file_lines_free(qlines);
*returned = numlines;