Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Console View


Tags: collectd curl diffutils doxygen ffmpeg gawk ggettext ggrep gtar libcheck liblognorm libpcap libpsl libunistring memcached opencsw openldap pcre pcre2 protobuf rrdtool rsyslog sudo tcpdump texinfo tmux wget wget2
Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

collectd curl diffutils doxygen ffmpeg gawk ggettext ggrep gtar libcheck liblognorm libpcap libpsl libunistring memcached opencsw openldap pcre pcre2 protobuf rrdtool rsyslog sudo tcpdump texinfo tmux wget wget2
d97f4ef3e533...
Daniel Stenberg
ifdef
d8a7aad061f9...
Viktor Szakats
GHA/windows: drop `git config core.autocrlf input` steps

CI works without it now. For an inexplicable reason, this single `git`
command took 9 seconds per job, making this patch save more than
2 minutes per workflow run. It was also the only step using PowerShell.

Closes #19150
d8961767637e...
Arnold D. Robbins
Small update in TODO.
d3b2ba92c7ed...
Daniel Stenberg
rustls: exit on error

In init_config_builder_verifier() the call to
rustls_root_cert_store_builder_build() set result on failure but did not
return.

Pointed out by ZeroPath
Closes #19125
vszakats
GitHub Pull Request #19150 (3 commits)
bagder
GitHub Pull Request #19143 (2 commits)
c21655e7ff24...
Daniel Stenberg
tool_filetime: cap crazy filetimes instead of erroring

Also cap the minimum allowed timestamp now.

Closes #19147
bf42bbbc0a42...
Daniel Stenberg
fixup accept multiple Location headers when identical

verify with test 773
be50cd86ae28...
Daniel Stenberg
http: return error for a second Location: header

Follow-up to dbcaa0065719acc0383

Adjusted test 580, added test 772

Fixes #19130
Reported-by: Jakub Stasiak
Closes #19134
yedayak
GitHub Pull Request #19149 (1 commit)
976333dd4052...
Daniel Stenberg
curl_path: make sure just whitespace is illegal

This function could previously accidentally return true and a NULL path
if only whitespace was provided as argument.

Also, make it stricter and do not allow CR or LF within the string.

Use more strparse parsing.

Drop the comment saying this is from OpenSSH as it has now been
rewritten since then.

Closes #19141
8504c41e2c61...
Daniel Stenberg
tool_cb_rea: use poll instead of select if available

- poll doesn't have the FD_SETSIZE problem

- select: if socket >= FD_SETSIZE, skip the call

Closes #19143
7f19fa98199f...
Daniel Stenberg
lib: add asserts that hostname has content

For all network related protocols there must be a non-blank hostname
used. This change adds a few asserts in some places to make debug/tests
catch mistakes if any such would slip in.

Closes #19146
769ccb4d4261...
Daniel Stenberg
curl_get_line: enhance the API

To make sure callers can properly differentiate between errors and know
cleanly when EOF happens. Updated all users and unit test 3200.

Triggered by a remark by ZeroPath

Closes #19140
6b2745326a4e...
Daniel Stenberg
curl_easy_setopt.md: add missing CURLOPT_POSTFIELDS

It was mistakenly removed in 8dab7465a594b1fb4b (shipped in 8.9.0)

Also fix test 1139 which should have detected this but didn't due to a
bad regex check.

Reported-by: Jonathan Cardoso
Fixes #19151
69cb94ee1db4...
Daniel Stenberg
let the fd be int
55e0526566f9...
Yedaya Katsman
openssl: fix unable do typo in failf() calls

Closes #19149
4c636b2dc1fb...
Daniel Stenberg
tool_operate: return error on strdup() failure

In src/tool_operate.c inside the Windows safe-search branch (#ifdef
CURL_CA_SEARCH_SAFE), the code assigns config->cacert = strdup(cacert);
at line 2076 without checking whether strdup returned NULL.

This would allow the code to continue with the wrong value set, causing
possible confusion.

Pointed out by ZeroPath
Closes #19145
41e354ef73ea...
Daniel Stenberg
tool_filetime: cap crazy filetimes instead of erroring

Also cap the minimum allowed timestamp now.
3986149c0405...
Viktor Szakats
GHA/windows: delete remains of Perl `Win32-Process*` caching

Follow-up to c8d6643df212791edee705a94c890335dac8762b #19083
jay
GitHub Pull Request #19148 (1 commit)
086e35ac22eb...
Daniel Stenberg
lib: add asserts that hostname has content

For all network related protocols there must be a non-blank hostname
used. This change adds a few asserts in some places to make debug/tests
catch mistakes if any such would slip in.
00cb679c04ef...
Daniel Stenberg
openssl: remove dead code

A condition in infof_certstack() would always equal true after a
previous change.

Follow-up to e2a4de8a607d3c7f52918ef50ab6411c75

Pointed out by Coverity
Closes #19142