mirror of
https://github.com/mirror/wget.git
synced 2025-01-15 06:40:21 +08:00
f7835691b4
* src/ftp.c(getftp): Don't free `target`. If it is not pointing to targetbuf, then it still pointing to its original location of u->dir. This location will be free'd later. Doing so now causes a double free and hence crashes Wget * tests/Test-ftp-dir.px: New test to show double free error * tests/Makefile.am: Add new test
45 lines
899 B
Perl
Executable File
45 lines
899 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FTPTest;
|
|
|
|
|
|
###############################################################################
|
|
|
|
my $afile = <<EOF;
|
|
Some text.
|
|
EOF
|
|
|
|
$afile =~ s/\n/\r\n/;
|
|
|
|
|
|
# code, msg, headers, content
|
|
my %urls = (
|
|
'/dir/afile.txt' => {
|
|
content => $afile,
|
|
},
|
|
);
|
|
|
|
my $cmdline = $WgetTest::WGETPATH . " -S ftp://localhost:{{port}}//dir/afile.txt";
|
|
|
|
my $expected_error_code = 0;
|
|
|
|
my %expected_downloaded_files = (
|
|
'afile.txt' => {
|
|
content => $afile,
|
|
},
|
|
);
|
|
|
|
###############################################################################
|
|
|
|
my $the_test = FTPTest->new (
|
|
input => \%urls,
|
|
cmdline => $cmdline,
|
|
errcode => $expected_error_code,
|
|
output => \%expected_downloaded_files);
|
|
exit $the_test->run();
|
|
|
|
# vim: et ts=4 sw=4
|