Opened 6 years ago

Closed 5 years ago

#12572 closed Bugs (fixed)

Typo in case normalization for country locale component

Reported by: manikulin@… Owned by: Artyom Beilis
Milestone: To Be Determined Component: locale
Version: Boost Development Trunk Severity: Problem
Keywords: Cc:

Description

https://github.com/boostorg/locale/blob/develop/src/util/locale_data.cpp#L60

if('a' <= tmp[i] && tmp[i]<='a')

tmp[i]=tmp[i]-'a'+'A';

should be

if('a' <= tmp[i] && tmp[i]<='z')

Change History (1)

comment:1 by Artyom Beilis, 5 years ago

Resolution: fixed
Status: newclosed

Thanks fixed in dev

Note: See TracTickets for help on using tickets.