]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libstdc++/81395 fix crash when write follows large read
authorJonathan Wakely <jwakely@redhat.com>
Mon, 23 Oct 2017 17:47:10 +0000 (18:47 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 23 Oct 2017 17:47:10 +0000 (18:47 +0100)
Backport from mainline
2017-07-18  Jonathan Wakely  <jwakely@redhat.com>

PR libstdc++/81395
* include/bits/fstream.tcc (basic_filebuf::xsgetn): Don't set buffer
pointers for write mode after reading.
* testsuite/27_io/basic_filebuf/sgetn/char/81395.cc: New.

From-SVN: r254018

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/fstream.tcc
libstdc++-v3/testsuite/27_io/basic_filebuf/sgetn/char/81395.cc [new file with mode: 0644]

index 12f5fb9de0175937f0595e6a41b554d7eaec57f3..7426781e11c26dc57f14dcf45f6250017b448079 100644 (file)
@@ -1,5 +1,13 @@
 2017-10-23  Jonathan Wakely  <jwakely@redhat.com>
 
+       Backport from mainline
+       2017-07-18  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/81395
+       * include/bits/fstream.tcc (basic_filebuf::xsgetn): Don't set buffer
+       pointers for write mode after reading.
+       * testsuite/27_io/basic_filebuf/sgetn/char/81395.cc: New.
+
        Backport from mainline
        2017-10-19  Jonathan Wakely  <jwakely@redhat.com>
 
index a6e83f7ed901237c5624e5f3a40aebe1548a0edf..3a5246f655a5c6dcda16b2cec3c6e3a4f43a6429 100644 (file)
@@ -699,7 +699,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
  
           if (__n == 0)
             {
-              _M_set_buffer(0);
+              // Set _M_reading. Buffer is already in initial 'read' mode.
               _M_reading = true;
             }
           else if (__len == 0)
diff --git a/libstdc++-v3/testsuite/27_io/basic_filebuf/sgetn/char/81395.cc b/libstdc++-v3/testsuite/27_io/basic_filebuf/sgetn/char/81395.cc
new file mode 100644 (file)
index 0000000..ea8dbc1
--- /dev/null
@@ -0,0 +1,46 @@
+// Copyright (C) 2017 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-require-fileio "" }
+
+// PR libstdc++/81395
+
+#include <fstream>
+#include <cstring>     // for std::memset
+#include <cstdio>      // For BUFSIZ
+
+using std::memset;
+
+int main()
+{
+  {
+    std::filebuf fb;
+    fb.open("test.txt", std::ios::out);
+    char data[BUFSIZ];
+    memset(data, 'A', sizeof(data));
+    fb.sputn(data, sizeof(data));
+  }
+
+  std::filebuf fb;
+  fb.open("test.txt", std::ios::in|std::ios::out);
+  char buf[BUFSIZ];
+  memset(buf, 0, sizeof(buf));
+  fb.sgetn(buf, sizeof(buf));
+  // Switch from reading to writing without seeking first:
+  fb.sputn("B", 1);
+  fb.pubsync();
+}