From 7d4d39780d4fd2eb93071ebf86f9abddeeb9fe84 Mon Sep 17 00:00:00 2001 From: Aidan Garske Date: Thu, 10 Sep 2026 11:12:25 -0700 Subject: [PATCH] F-13461 - Return success from the capabilities example handle listing --- examples/wrap/caps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/wrap/caps.c b/examples/wrap/caps.c index 450014c9..25b4c430 100644 --- a/examples/wrap/caps.c +++ b/examples/wrap/caps.c @@ -129,6 +129,7 @@ int TPM2_Wrapper_CapsArgs(void* userCtx, int argc, char *argv[]) rc = wolfTPM2_GetHandles(PERSISTENT_FIRST, NULL); if (rc >= 0) { printf("Found %d persistent handles\n", rc); + rc = TPM_RC_SUCCESS; } /* Print the available PCR's */