From mboxrd@z Thu Jan 1 00:00:00 1970 From: arvin@suse.de To: gcc-gnats@gcc.gnu.org Subject: libstdc++/3358: wrong return value of find_first_not_of Date: Fri, 22 Jun 2001 04:06:00 -0000 Message-id: <20010622110136.2933.qmail@sourceware.cygnus.com> X-SW-Source: 2001-06/msg00956.html List-Id: >Number: 3358 >Category: libstdc++ >Synopsis: wrong return value of find_first_not_of >Confidential: no >Severity: serious >Priority: medium >Responsible: unassigned >State: open >Class: sw-bug >Submitter-Id: net >Arrival-Date: Fri Jun 22 04:06:01 PDT 2001 >Closed-Date: >Last-Modified: >Originator: arvin@suse.de >Release: gcc 3.0 >Organization: >Environment: >Description: the string function find_first_not_of return a wrong value if the second argument is the empty string. >How-To-Repeat: #include #include int main () { std::string a = "abcdef"; cout << a.find_first_not_of ("abcdef") << '\n'; cout << a.find_first_not_of ("abef") << '\n'; cout << a.find_first_not_of ("0123") << '\n'; cout << a.find_first_not_of ("") << '\n'; } gcc 2.95: 4294967295 2 0 0 gcc 3.0: 4294967295 2 0 4294967295 >Fix: >Release-Note: >Audit-Trail: >Unformatted: