1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Improve the noise collection for the internal random pool.

[originally from svn r2182]
This commit is contained in:
Simon Tatham
2002-11-02 15:23:20 +00:00
parent 93e9fadc75
commit 53eb272766
4 changed files with 98 additions and 29 deletions

View File

@ -584,5 +584,6 @@ int main(int argc, char **argv)
fprintf(stderr, "Remote process exit code unavailable\n");
exitcode = 1; /* this is an error condition */
}
return exitcode;
cleanup_exit(exitcode);
return exitcode; /* shouldn't happen, but placates gcc */
}