summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2010-11-30 22:30:12 +0100
committerJim Meyering <meyering@redhat.com>2010-12-01 07:13:06 +0100
commit3afda5f0076beca786ecbe90875828eb6988a964 (patch)
treea14bb414b71228d8e12f78886cb31d40aff35255 /NEWS
parent43d1112d01c0251076b5ec61605e45b101ab3e12 (diff)
downloadcoreutils-3afda5f0076beca786ecbe90875828eb6988a964.tar.xz
sort -u: fix a thread-race pointer corruption bug
* src/sort.c (write_unique): Save the entire "struct line", not just a pointer to one. Otherwise, with a multi-thread run, sometimes, with some inputs, fillbuf would would win a race and clobber a "saved->text" pointer in one thread just before it was dereferenced in a comparison in another thread. * NEWS (Bug fixes): Mention it.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 2d3f1f3f4..79484c18b 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,9 @@ GNU coreutils NEWS -*- outline -*-
od now prints floating-point numbers without losing information, and
it no longer omits spaces between floating-point columns in some cases.
+ sort -u with at least two threads could attempt to read through a
+ corrupted pointer. [bug introduced in coreutils-8.6]
+
** New features
split accepts the --number option to generate a specific number of files.