diff options
author | Richard Levitte <levitte@openssl.org> | 2018-04-25 13:01:39 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-04-25 14:08:33 +0200 |
commit | 3625f6c977beccd7bb0d80a1a670c19f4338a27a (patch) | |
tree | e5ed29169ff08aaec538f223e5c1b71f4407872a /ms | |
parent | Fix documentation for the -showcerts s_client option (diff) | |
download | openssl-3625f6c977beccd7bb0d80a1a670c19f4338a27a.tar.xz openssl-3625f6c977beccd7bb0d80a1a670c19f4338a27a.zip |
ms/uplink-x86.pl: close the file handle that was opened
Fixes #5656
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6079)
Diffstat (limited to 'ms')
-rwxr-xr-x | ms/uplink-x86.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/uplink-x86.pl b/ms/uplink-x86.pl index 440bf7d5f6..c298bdc0c3 100755 --- a/ms/uplink-x86.pl +++ b/ms/uplink-x86.pl @@ -41,4 +41,4 @@ for ($i=1;$i<=$N;$i++) { } &asm_finish(); -close OUTPUT; +close STDOUT; |