FIX: ifstream Object Loses Character in Text Mode

Last reviewed: January 14, 1998
Article ID: Q102158
The information in this article applies to:
  • The Microsoft C/C++ Compiler (CL.EXE) included with: - Microsoft C/C++ for MS-DOS, version 7.0 - Microsoft Visual C++ for Windows, versions 1.0 and 1.5 - Microsoft Visual C++ 32-bit Edition, versions 1.0, 2.0, 4.0,

         4.1, 4.2
    

SYMPTOMS

When an application reads characters into an ifstream object opened in text mode, data may be lost and not placed into the buffer. The code does not provide any warning or other indication of this data loss.

STATUS

Microsoft has confirmed this to be a problem in the products listed at the beginning of this article. This problem was fixed in Visual C++ 5.0.

MORE INFORMATION

The following code example demonstrates this problem by filling a buffer with the character sequence "01234567890..." and using an ifstream object to copy the data to another buffer. The transferred sequence reads as "013456..." Only the character "2" is missing from the sequence. The remainder of the sequence transfers correctly.

Sample Code

   /*
    * Compiler options needed:  -GX for 5.0 only
    */

   #include <iostream.h>
   #include <fstream.h>

   // To resolve the problem using Visual C++ 5.0, use the
   // following three statements instead of the preceding two:
   //
   // #include <iostream>
   // #include <fstream>
   // using namespace std;


   void main(void)
   {
      ofstream os("test.tmp");
      for (int i = 0; i < 512; i++)
      {
         os.put((char)('0' + i % 10));
      }
      os.put('\n');
      os.close();

      streampos pos;
      ifstream is("test.tmp");
   // To resolve this error using Visual C++ 4.x and earlier, use the
   // following line to open the ifstream instead of the line above.
   // ifstream is("test.tmp", ios::binary);
      for (int k = 0; k < 10; k++)
      {
         pos = is.tellg();
         cout << (char)is.get();
      }
   }


Additional query words: 8.00 8.00c 9.00
Keywords : CPPIss vcbuglist400 kbcode
Version : ms-dos:7.0; Windows:1.0, 1.5; Winnt: 1.0, 2.0, 4.0, 4.1, 4.2
Platform : MS-DOS WINDOWS winnt
Solution Type : kbfix


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 14, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.