summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authortodd stecher <todd.stecher@gmail.com>2009-01-19 15:09:51 -0800
committerSteven Danneman <steven.danneman@isilon.com>2009-01-21 17:13:03 -0800
commit989ad44d32c2e77972a966d91f1813b0b929f83b (patch)
treebb7a41c961fe974f464f7ce2a27ca3bf055187bf /testsuite
parente9615b43b4dc7037da7bc274d720b8e54c7f85bc (diff)
downloadsamba-989ad44d32c2e77972a966d91f1813b0b929f83b.tar.gz
Memory leaks and other fixes found by Coverity
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/printing/psec.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/testsuite/printing/psec.c b/testsuite/printing/psec.c
index 33a45e89d03..051837cec90 100644
--- a/testsuite/printing/psec.c
+++ b/testsuite/printing/psec.c
@@ -352,8 +352,11 @@ int psec_setsec(char *printer)
goto done;
}
- prs_init(&ps, (uint32)sec_desc_size(sdb->sec) +
- sizeof(SEC_DESC_BUF), 4, mem_ctx, MARSHALL);
+ if (!prs_init(&ps, (uint32)sec_desc_size(sdb->sec) +
+ sizeof(SEC_DESC_BUF), 4, mem_ctx, MARSHALL)) {
+ printf("prs_init() failed\n");
+ goto done;
+ }
if (!sec_io_desc_buf("nt_printing_setsec", &sdb, &ps, 1)) {
printf("sec_io_desc_buf failed\n");