xstat: Ignore return value from xstat_*_Cleanup

We're about to exit anyway, so we don't care whether Cleanup
succeeds or not

Caught by clang-analyzer

Change-Id: I6350d60e6a5d29b8aaa272a54cf9ead47fdb5fad
Reviewed-on: http://gerrit.openafs.org/9186
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
Reviewed-by: Jeffrey Altman <jaltman@your-file-system.com>
This commit is contained in:
Simon Wilkinson 2013-02-19 16:56:38 +00:00 committed by Jeffrey Altman
parent bdce4701b2
commit d02757985d
2 changed files with 2 additions and 2 deletions

View File

@ -922,7 +922,7 @@ RunTheTest(struct cmd_syndesc *a_s, void *arock)
*/
if (debugging_on)
printf("\nYawn, main thread just woke up. Cleaning things out...\n");
code = xstat_cm_Cleanup(1); /*Get rid of malloc'ed data */
xstat_cm_Cleanup(1); /*Get rid of malloc'ed data */
rx_Finalize();
return (0);

View File

@ -821,7 +821,7 @@ RunTheTest(struct cmd_syndesc *a_s, void *dummy)
if (debugging_on)
printf("\nYawn, main thread just woke up. Cleaning things out...\n");
code = xstat_fs_Cleanup(1); /*Get rid of malloc'ed data */
xstat_fs_Cleanup(1); /*Get rid of malloc'ed data */
rx_Finalize();
return (0);
}