public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] tirpc_clnt_destroy: Determine the return value of clnt_create()
@ 2024-09-26  4:13 Ma Xinjian via ltp
  2024-09-26 13:41 ` Chuck Lever via ltp
  2024-09-27  2:12 ` Hanxiao Chen (Fujitsu) via ltp
  0 siblings, 2 replies; 4+ messages in thread
From: Ma Xinjian via ltp @ 2024-09-26  4:13 UTC (permalink / raw)
  To: ltp, chuck.lever, chenhx.fnst

Determine the return value of clnt_create() to avoid segmentation fault
when executing clnt_destroy() when the return value of create is NULL.

Signed-off-by: Ma Xinjian <maxj.fnst@fujitsu.com>
---
 .../tirpc/tirpc_toplevel_clnt_destroy/tirpc_clnt_destroy.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_destroy/tirpc_clnt_destroy.c b/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_destroy/tirpc_clnt_destroy.c
index 939ff3e4a..bb9a47503 100644
--- a/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_destroy/tirpc_clnt_destroy.c
+++ b/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_toplevel_clnt_destroy/tirpc_clnt_destroy.c
@@ -58,6 +58,13 @@ int main(int argn, char *argc[])
 	//first create client
 	clnt = clnt_create(argc[1], progNum, VERSNUM, nettype);
 
+	if (clnt == NULL) {
+		clnt_pcreateerror("err");
+		printf("%d\n", rpc_createerr.cf_stat);
+
+		return 1;
+	}
+
 	//then call destroy macro
 	clnt_destroy(clnt);
 
-- 
2.42.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-10-21 12:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26  4:13 [LTP] [PATCH] tirpc_clnt_destroy: Determine the return value of clnt_create() Ma Xinjian via ltp
2024-09-26 13:41 ` Chuck Lever via ltp
2024-10-21 12:22   ` Petr Vorel
2024-09-27  2:12 ` Hanxiao Chen (Fujitsu) via ltp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox