Builder curl-threaded-solaris10-sparc Build #3197
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d |
| Got Revision | 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d |
| Changes | 2 changes |
BuildSlave:
unstable10sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc | slave |
| buildername | curl-threaded-solaris10-sparc | Builder |
| buildnumber | 3197 | Build |
| codebase | Build | |
| got_revision | 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 10 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d | Build |
| scheduler | schedule-curl-threaded-solaris10-sparc | Scheduler |
| slavename | unstable10s | BuildSlave |
| workdir | /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Wed Dec 3 14:58:09 2025 |
| End | Wed Dec 3 15:24:41 2025 |
| Elapsed | 26 mins, 32 secs |
All Changes:
:
Change #250812
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 03 Dec 2025 14:50:16 Repository https://github.com/curl/curl.git Project curl Branch master Revision c3b030b860a2c1b2a74e032bb82b981d2f806249 Comments
lib: fix formatting nits (part 3) From `lib/h` to `lib/w`. part 1: 47a1ab2ebecb21485c0e955316d90511e80a3c43 #19764 part 2: 86b346443b68cde7ef33e1ab770e6c8ab641d2b1 #19800 Closes #19811
Changed files
- lib/hash.c
- lib/hash.h
- lib/headers.c
- lib/headers.h
- lib/hmac.c
- lib/hostip.c
- lib/hostip.h
- lib/hostip4.c
- lib/hsts.c
- lib/hsts.h
- lib/http.c
- lib/http.h
- lib/http1.c
- lib/http2.c
- lib/http2.h
- lib/http_aws_sigv4.c
- lib/http_aws_sigv4.h
- lib/http_chunks.c
- lib/http_digest.c
- lib/http_negotiate.c
- lib/http_ntlm.c
- lib/http_proxy.c
- lib/http_proxy.h
- lib/httpsrr.c
- lib/httpsrr.h
- lib/idn.c
- lib/if2ip.c
- lib/if2ip.h
- lib/imap.c
- lib/imap.h
- lib/ldap.c
- lib/llist.c
- lib/llist.h
- lib/md4.c
- lib/md5.c
- lib/memdebug.c
- lib/mime.c
- lib/mime.h
- lib/mprintf.c
- lib/mqtt.c
- lib/multi.c
- lib/multi_ev.c
- lib/multi_ntfy.c
- lib/multi_ntfy.h
- lib/multiif.h
- lib/netrc.c
- lib/netrc.h
- lib/noproxy.c
- lib/openldap.c
- lib/parsedate.c
- lib/pingpong.c
- lib/pingpong.h
- lib/pop3.c
- lib/progress.c
- lib/psl.c
- lib/rand.c
- lib/rand.h
- lib/ratelimit.c
- lib/request.c
- lib/request.h
- lib/rtsp.c
- lib/rtsp.h
- lib/select.c
- lib/select.h
- lib/sendf.c
- lib/sendf.h
- lib/setopt.c
- lib/setopt.h
- lib/setup-os400.h
- lib/setup-vms.h
- lib/sha256.c
- lib/sigpipe.h
- lib/slist.c
- lib/smb.c
- lib/smtp.c
- lib/socketpair.h
- lib/socks.c
- lib/socks.h
- lib/socks_gssapi.c
- lib/socks_sspi.c
- lib/splay.c
- lib/strcase.c
- lib/strcase.h
- lib/strdup.h
- lib/strerror.c
- lib/system_win32.c
- lib/telnet.c
- lib/tftp.c
- lib/transfer.c
- lib/transfer.h
- lib/uint-bset.c
- lib/uint-bset.h
- lib/uint-hash.c
- lib/uint-hash.h
- lib/uint-spbset.c
- lib/uint-table.c
- lib/url.c
- lib/urlapi.c
- lib/urldata.h
- lib/version.c
- lib/ws.c
- lib/ws.h
Change #250813
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 03 Dec 2025 14:50:21 Repository https://github.com/curl/curl.git Project curl Branch master Revision 6694a42aa0e820a6fe1e59d85ff8597b6d768d8d Comments
idn: avoid allocations and wcslen on Windows Eliminate a heap buffer in both `win32_idn_to_ascii()` and `win32_ascii_to_idn()`, by replacing it with stack buffer. The maximum size is fixed in these cases, and small enough to fit there. Also reuse length returned by the UTF-8 to wchar conversion, allowing to drop `wcslen()` call in both functions, and allowing to call the wchar to UTF-8 conversion API `WideCharToMultiByte()` with the known length, saving length calculations within that API too. Ref: https://github.com/curl/curl/pull/19748#issuecomment-3592015200 Closes #19798
Changed files
- lib/idn.c