mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
2003-04-07 Jakub Jelinek <jakub@redhat.com>
* posix/bug-regex4.c (main): Cap RANGE and STOP arguments to sum of SIZE1 and SIZE2 arguments.
This commit is contained in:
@@ -43,9 +43,9 @@ main (void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
match[0] = re_search_2 (®ex, "xyabez", 6, "", 0, 1, 9, NULL, 10);
|
match[0] = re_search_2 (®ex, "xyabez", 6, "", 0, 1, 5, NULL, 6);
|
||||||
match[1] = re_search_2 (®ex, NULL, 0, "abc", 3, 0, 3, NULL, 3);
|
match[1] = re_search_2 (®ex, NULL, 0, "abc", 3, 0, 3, NULL, 3);
|
||||||
match[2] = re_search_2 (®ex, "xya", 3, "bd", 2, 2, 6, NULL, 8);
|
match[2] = re_search_2 (®ex, "xya", 3, "bd", 2, 2, 3, NULL, 5);
|
||||||
if (match[0] != 2 || match[1] != 0 || match[2] != 2)
|
if (match[0] != 2 || match[1] != 0 || match[2] != 2)
|
||||||
{
|
{
|
||||||
printf ("re_search_2 returned %d,%d,%d, expected 2,0,2\n",
|
printf ("re_search_2 returned %d,%d,%d, expected 2,0,2\n",
|
||||||
|
Reference in New Issue
Block a user