mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Fix compilation error in src/mswindows.c
This commit is contained in:
parent
ce088c2b9e
commit
11c6dcb705
@ -1,3 +1,7 @@
|
|||||||
|
2014-11-20 Gisle Vanem <gvanem@yahoo.no>
|
||||||
|
|
||||||
|
* mswindows.c (ws_cleanup): Fix compiler error
|
||||||
|
|
||||||
2014-12-03 Jérémie Courrèges-Anglas <jca@wxcvbn.org> (tiny change)
|
2014-12-03 Jérémie Courrèges-Anglas <jca@wxcvbn.org> (tiny change)
|
||||||
|
|
||||||
* openssl.c (ssl_init): Allow pfs to be used with protocols other than
|
* openssl.c (ssl_init): Allow pfs to be used with protocols other than
|
||||||
|
@ -89,7 +89,7 @@ windows_main (char **exec_name)
|
|||||||
static void
|
static void
|
||||||
ws_cleanup (void)
|
ws_cleanup (void)
|
||||||
{
|
{
|
||||||
xfree ((char*)exec_name);
|
xfree (exec_name);
|
||||||
WSACleanup ();
|
WSACleanup ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ from misc.wget_file import WgetFile
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
# This test caused wget up to 1.16 to crash
|
# This test caused wget up to 1.16 to crash
|
||||||
os.environ["LC_ALL"] = "en_US.UTF-8"
|
#os.environ["LC_ALL"] = "en_US.UTF-8"
|
||||||
|
|
||||||
urls = [
|
urls = [
|
||||||
"File%20formats/Images/SVG,%20Scalable%20Vector%20Graphics/html,%20W3C%20v1.2%20rec%20(tiny)/directory",
|
"File%20formats/Images/SVG,%20Scalable%20Vector%20Graphics/html,%20W3C%20v1.2%20rec%20(tiny)/directory",
|
||||||
|
Loading…
Reference in New Issue
Block a user