summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-11-10 04:28:55 +0000
committerAndrew Tridgell <tridge@samba.org>2005-11-10 04:28:55 +0000
commitd7ee2d205f9e1534abfc0c181bf247f658136ead (patch)
tree93740f310d5dc0f564790eb167ec54c3ea317b1b /source
parent29734f4477f92fa8a7c2505934dd24379be455f5 (diff)
downloadsamba-d7ee2d205f9e1534abfc0c181bf247f658136ead.tar.gz
samba-d7ee2d205f9e1534abfc0c181bf247f658136ead.tar.xz
samba-d7ee2d205f9e1534abfc0c181bf247f658136ead.zip
r11628: fixed a valgrind error in the rpc echo test
Diffstat (limited to 'source')
-rw-r--r--source/torture/rpc/echo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/torture/rpc/echo.c b/source/torture/rpc/echo.c
index 1ce4a200087..afab64565dc 100644
--- a/source/torture/rpc/echo.c
+++ b/source/torture/rpc/echo.c
@@ -358,7 +358,7 @@ static BOOL test_surrounding(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx)
status = dcerpc_echo_TestSurrounding(p, mem_ctx, &r);
if (!NT_STATUS_IS_OK(status)) {
printf("TestSurrounding failed - %s\n", nt_errstr(status));
- ret = False;
+ return False;
}
if (r.out.data->x != 2 * r.in.data->x) {