mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-03 21:10:25 +08:00
89afbb8d8a
This reverts commit a51147467e6cf58618433286f93d17043e00b0fc. Dumb thinko on my part. What was supposed to be an optimization actually broke caseinsensitive globbing in that the entire input of globbed expressions were downcased. Drop the unused CCHAR() macro nevertheless. Fixes: a51147467e6cf ("Cygwin: glob: perform ignore_case_with_glob on input") Reported-by: Michael Goldshteyn <mgold10000@gmail.com> Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
27 lines
1.1 KiB
Groff
27 lines
1.1 KiB
Groff
Fixes:
|
|
------
|
|
|
|
- Fix the problem that console setup accesses shared memory which
|
|
is already unmapped due to race condition. To avoid this issue,
|
|
shared console memory will be kept mapped if it belongs to CTTY.
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2024-February/255561.html
|
|
|
|
- Fix a race issue between console open() and close() which is caused
|
|
by state mismatch between con.owner and console attaching state.
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2024-March/255575.html
|
|
|
|
- Fix a problem that select() call for write-side of a pipe possibly
|
|
hangs with non-cygwin reader.
|
|
Addresses: https://github.com/msys2/msys2-runtime/issues/202
|
|
|
|
- Avoid recalling offline files if the file is not explicitely opened
|
|
for reading or writing data.
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2024-March/255613.html
|
|
|
|
- Don't skip inadvertently some local SAM accounts on domain member
|
|
machines.
|
|
|
|
- Revert ill-advised optimization of glob(3) in case of caseinsensitive
|
|
globbing.
|
|
Addresses: https://cygwin.com/pipermail/cygwin/2024-March/255675.html
|