File: 1.7.22

package info (click to toggle)
libnewlib-nano 2.11.2-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 114,156 kB
  • sloc: ansic: 631,393; cpp: 129,053; makefile: 62,427; asm: 49,042; sh: 15,817; xml: 15,337; perl: 4,340; lisp: 720; python: 557; exp: 470; yacc: 315; awk: 25; tcl: 4
file content (42 lines) | stat: -rw-r--r-- 1,598 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
What's new:
-----------


What changed:
-----------

- Support for /dev/mem, /dev/kmem and /dev/port removed, since OS support
  was limited to 32 bit Windows XP only.

- Added cygwin GetCommandLine wrappers which will allow Cygwin programs to
  (appear to) use the Windows command line functions.

- regcomp(3) now allows character values >= 0x80 if the current codeset is
  ASCII (default codeset in the "C"/"POSIX" locale).  This allows patterns
  containing arbitrary byte values as GLibc's regcomp.
  Fixes: http://cygwin.com/ml/cygwin/2013-07/msg00405.html


Bug fixes:
----------

- Fix an off-by-one error in path handling which made the access check
  for the existing path before a ".." component (introduced with 1.7.21)
  fail for UNC paths (//server/share/path).
  Fixes: http://cygwin.com/ml/cygwin/2013-07/msg00375.html

- Fix long-standing problem which allows to access files via ".." using an
  invalid POSIX path, for instance, `cd nonexistant/../existing_dir".
  Fixes: http://cygwin.com/ml/cygwin/2013-05/msg00222.html

- Fix an initialization bug in XSI IPC on, which could result in
  XSI IPC functions misbehave on x86_64.
  Fixes: http://cygwin.com/ml/cygwin-apps/2013-07/msg00063.html
         http://cygwin.com/ml/cygwin-apps/2013-07/msg00229.html

- Fix a timer handle leak in sleep family of functions.
  Fixes: http://cygwin.com/ml/cygwin/2013-07/msg00379.html

- Fix issue with raise() not causing the process to exit with a signal
  status.  Also only set "dumped core" flag when it's a "kernel" signal.
  See: http://cygwin.com/ml/cygwin-apps/2013-07/msg00251.html