mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
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:
parent
bdce4701b2
commit
d02757985d
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user