SHA256
1
0
forked from pool/coreutils

Accepting request 211785 from home:bernhard-voelker:branches:Base:System

OBS-URL: https://build.opensuse.org/request/show/211785
OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=215
This commit is contained in:
Bernhard Voelker 2013-12-19 23:25:35 +00:00 committed by Git OBS Bridge
parent a2858c46c8
commit edd1210fec
3 changed files with 16 additions and 2 deletions

View File

@ -1498,7 +1498,7 @@ Index: src/join.c
+ for (i = 0; i < 2; i++)
+ {
+ mallocd = 1;
+ copy[i] = xmalloc (len[i] + 1);
+ copy[i] = xcalloc (0, len[i] + 1);
+
+ for (j = 0; j < MIN (len[0], len[1]);)
+ {
@ -3902,7 +3902,7 @@ Index: src/uniq.c
+
+ for (i = 0; i < 2; i++)
+ {
+ copy[i] = xmalloc (len[i] + 1);
+ copy[i] = xcalloc (0, len[i] + 1);
+
+ for (j = 0, chars = 0; j < len[i] && chars < check_chars; chars++)
+ {

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Dec 19 22:54:26 UTC 2013 - mail@bernhard-voelker.de
- Fix issue with binary input in non-C locale (rh#1036289)
(coreutils-i18n.patch): Initialize memory for some edge cases
in the i18n patch for uniq and join.
-------------------------------------------------------------------
Wed Dec 11 20:22:47 UTC 2013 - mail@bernhard-voelker.de

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Dec 19 22:54:26 UTC 2013 - mail@bernhard-voelker.de
- Fix issue with binary input in non-C locale (rh#1036289)
(coreutils-i18n.patch): Initialize memory for some edge cases
in the i18n patch for uniq and join.
-------------------------------------------------------------------
Wed Dec 11 20:22:47 UTC 2013 - mail@bernhard-voelker.de