Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
	* string/strcoll.c: Fix two memory allocation problems.
	* string/Makefile (tests): Add bug-strcoll1.
	* string/bug-strcoll1.c: New file.
  • Loading branch information
Ulrich Drepper committed Apr 26, 2001
1 parent 9243173 commit c51dc06
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,5 +1,9 @@
2001-04-26 Ulrich Drepper <drepper@redhat.com>

* string/strcoll.c: Fix two memory allocation problems.
* string/Makefile (tests): Add bug-strcoll1.
* string/bug-strcoll1.c: New file.

* malloc/mcheck.c (mcheck): Call malloc once before setting the
hooks to allow the internal check hooks to be set up if necessary.

Expand Down
3 changes: 2 additions & 1 deletion string/Makefile
Expand Up @@ -48,7 +48,7 @@ o-objects.ob := memcpy.o memset.o memchr.o
tests := tester inl-tester noinl-tester testcopy test-ffs \
tst-strlen stratcliff tst-svc tst-inlcall \
bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
tst-strtok tst-strxfrm
tst-strtok tst-strxfrm bug-strcoll1
distribute := memcopy.h pagecopy.h tst-svc.expect


Expand All @@ -58,6 +58,7 @@ tester-ENV = LANGUAGE=C
inl-tester-ENV = LANGUAGE=C
noinl-tester-ENV = LANGUAGE=C
tst-strxfrm-ENV = LOCPATH=$(common-objpfx)localedata
bug-strcoll1-ENV = LOCPATH=$(common-objpfx)localedata
CFLAGS-noinl-tester.c = -fno-builtin
CFLAGS-tst-strlen.c = -fno-builtin
CFLAGS-stratcliff.c = -fno-builtin
Expand Down
24 changes: 24 additions & 0 deletions string/bug-strcoll1.c
@@ -0,0 +1,24 @@
#include <stdio.h>
#include <string.h>
#include <locale.h>

int
main (void)
{
const char t1[] = "0-0-0-0-0-0-0-0-0-0.COM";
const char t2[] = "00000-00000.COM";
int res1;
int res2;

setlocale (LC_ALL, "en_US.ISO-8859-1");

res1 = strcoll (t1, t2);
printf ("strcoll (\"%s\", \"%s\") = %d\n", t1, t2, res1);
res2 = strcoll (t2, t1);
printf ("strcoll (\"%s\", \"%s\") = %d\n", t2, t1, res2);

return ((res1 == 0 && res2 != 0)
|| (res1 != 0 && res2 == 0)
|| (res1 < 0 && res2 < 0)
|| (res1 > 0 && res2 > 0));
}
6 changes: 3 additions & 3 deletions string/strcoll.c
Expand Up @@ -154,7 +154,7 @@ STRCOLL (s1, s2, l)
if (s1len + s2len >= 16384)
{
idx1arr = (int32_t *) malloc ((s1len + s2len) * (sizeof (int32_t) + 1));
idx2arr = &idx1arr[s2len];
idx2arr = &idx1arr[s1len];
rule1arr = (unsigned char *) &idx2arr[s2len];
rule2arr = &rule1arr[s1len];

Expand All @@ -173,7 +173,7 @@ STRCOLL (s1, s2, l)
try_stack:
idx1arr = (int32_t *) alloca (s1len * sizeof (int32_t));
idx2arr = (int32_t *) alloca (s2len * sizeof (int32_t));
rule1arr = (unsigned char *) alloca (s2len);
rule1arr = (unsigned char *) alloca (s1len);
rule2arr = (unsigned char *) alloca (s2len);
}

Expand Down Expand Up @@ -422,7 +422,7 @@ STRCOLL (s1, s2, l)
{
/* No sequence at all or just one. */
if (idx1cnt == idx1max)
/* Note that seq2len is still zero. */
/* Note that seq1len is still zero. */
break;

backw1_stop = ~0ul;
Expand Down

0 comments on commit c51dc06

Please sign in to comment.