Browse Source

Fix running the tests with -fsanitize=address.

master
Reece H. Dunn 7 years ago
parent
commit
22009de5f8
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/case.c

+ 3
- 3
src/case.c View File

@@ -2664,7 +2664,7 @@ static const struct case_conversion_entry case_conversion_data[] =
codepoint_t ucd_toupper(codepoint_t c)
{
int begin = 0;
int end = sizeof(case_conversion_data)/sizeof(case_conversion_data[0]);
int end = (sizeof(case_conversion_data)/sizeof(case_conversion_data[0])) - 1;
while (begin <= end)
{
int pos = (begin + end) / 2;
@@ -2682,7 +2682,7 @@ codepoint_t ucd_toupper(codepoint_t c)
codepoint_t ucd_tolower(codepoint_t c)
{
int begin = 0;
int end = sizeof(case_conversion_data)/sizeof(case_conversion_data[0]);
int end = (sizeof(case_conversion_data)/sizeof(case_conversion_data[0])) - 1;
while (begin <= end)
{
int pos = (begin + end) / 2;
@@ -2700,7 +2700,7 @@ codepoint_t ucd_tolower(codepoint_t c)
codepoint_t ucd_totitle(codepoint_t c)
{
int begin = 0;
int end = sizeof(case_conversion_data)/sizeof(case_conversion_data[0]);
int end = (sizeof(case_conversion_data)/sizeof(case_conversion_data[0])) - 1;
while (begin <= end)
{
int pos = (begin + end) / 2;

Loading…
Cancel
Save