Welcome to mirror list, hosted at ThFree Co, Russian Federation.

1.7.22 « release « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5b7e8355bb0a1f38a10d4e78284a952873789bd (plain)
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
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.


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