diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2010-08-24 16:45:31 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2010-08-24 16:45:31 -0700 |
commit | 77ba147e762b4a0db33d712a5d6a8eeeb50011f4 (patch) | |
tree | b697c8c25ccf4231483e4ac0d6580d608593fba5 /tests/data/test39 | |
parent | bed311eda27a3c7c87f0988310462414c54e5384 (diff) | |
download | curl-77ba147e762b4a0db33d712a5d6a8eeeb50011f4.tar.gz |
Fixed a NULL pointer dereference in form posting
It was introduced in commit eeb2cb05 along with the -F type=
change. Also fixed a typo in the name of the magic filename=
parameter. Tweaked tests 39 and 173 to better test this path.
Diffstat (limited to 'tests/data/test39')
-rw-r--r-- | tests/data/test39 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/data/test39 b/tests/data/test39 index 95df74b42..2c8da3364 100644 --- a/tests/data/test39 +++ b/tests/data/test39 @@ -26,7 +26,7 @@ http HTTP RFC1867-type formposting with filename= and type= </name> <command> -http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" -F file2=@log/test39.txt +http://%HOSTIP:%HTTPPORT/we/want/39 -F name=daniel -F tool=curl --form-string "str1=@literal" --form-string "str2=<verbatim;type=xxx/yyy" -F "file=@log/test39.txt;type=moo/foobar;filename=fakerfile" -F file2=@log/test39.txt </command> # We create this file before the command is invoked! <file name="log/test39.txt"> |