public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [v3 PATCH] PR libstdc++/77717
@ 2016-09-25 16:26 Ville Voutilainen
  2016-09-26  9:55 ` Jonathan Wakely
  0 siblings, 1 reply; 2+ messages in thread
From: Ville Voutilainen @ 2016-09-25 16:26 UTC (permalink / raw)
  To: libstdc++, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 215 bytes --]

Tested on Linux-x64.

2016-09-25  Ville Voutilainen  <ville.voutilainen@gmail.com>

    PR libstdc++/77717
    * testsuite/21_strings/basic_string_view/operations/compare/char/1.cc:
    Fix an out-of-bounds access.

[-- Attachment #2: pr77717.diff --]
[-- Type: text/plain, Size: 939 bytes --]

diff --git a/libstdc++-v3/testsuite/21_strings/basic_string_view/operations/compare/char/1.cc b/libstdc++-v3/testsuite/21_strings/basic_string_view/operations/compare/char/1.cc
index 77188b3..28e2514 100644
--- a/libstdc++-v3/testsuite/21_strings/basic_string_view/operations/compare/char/1.cc
+++ b/libstdc++-v3/testsuite/21_strings/basic_string_view/operations/compare/char/1.cc
@@ -82,8 +82,8 @@ test01()
   test_value(strncmp(str_1.data(), str_0.data(), 6), z);
   test_value(strncmp(str_1.data(), str_0.data(), 14), lt);
   test_value(memcmp(str_1.data(), str_0.data(), 6), z);
-  test_value(memcmp(str_1.data(), str_0.data(), 14), lt);
-  test_value(memcmp("costa marbella", "costa rica", 14), lt);
+  test_value(memcmp(str_1.data(), str_0.data(), 10), lt);
+  test_value(memcmp("costa marbella", "costa rica", 10), lt);
 
   // int compare(const basic_string_view& str) const;
   test_value(str_0.compare(str_1), gt); //because r>m

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [v3 PATCH] PR libstdc++/77717
  2016-09-25 16:26 [v3 PATCH] PR libstdc++/77717 Ville Voutilainen
@ 2016-09-26  9:55 ` Jonathan Wakely
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Wakely @ 2016-09-26  9:55 UTC (permalink / raw)
  To: Ville Voutilainen; +Cc: libstdc++, gcc-patches

On 25/09/16 17:44 +0300, Ville Voutilainen wrote:
>    PR libstdc++/77717
>    * testsuite/21_strings/basic_string_view/operations/compare/char/1.cc:
>    Fix an out-of-bounds access.

OK, thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-09-26  9:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-25 16:26 [v3 PATCH] PR libstdc++/77717 Ville Voutilainen
2016-09-26  9:55 ` Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).