From 6481a752a2bdef8ad08923cb0d9999b3462210cb Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 10 Nov 2005 04:28:55 +0000 Subject: r11628: fixed a valgrind error in the rpc echo test (This used to be commit d340ea7906c091a1400d3e73a8f530174aa8a965) --- source4/torture/rpc/echo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/torture/rpc/echo.c b/source4/torture/rpc/echo.c index 1ce4a20008..afab64565d 100644 --- a/source4/torture/rpc/echo.c +++ b/source4/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) { -- cgit