Microsoft KB Archive/102158: Difference between revisions

From BetaArchive Wiki
m (Text replacement - "<" to "<")
m (Text replacement - ">" to ">")
 
Line 77: Line 77:
  */  
  */  


#include <iostream.h&gt;
#include <iostream.h>
#include <fstream.h&gt;
#include <fstream.h>


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



Latest revision as of 09:07, 20 July 2020

Knowledge Base


Article ID: 102158

Article Last Modified on 7/5/2005



APPLIES TO

  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 1.5 Professional Edition
  • Microsoft Visual C++ 1.0 Professional Edition
  • Microsoft Visual C++ 2.0 Professional Edition
  • Microsoft Visual C++ 4.0 Standard Edition
  • Microsoft Visual C++ 4.1 Subscription
  • Microsoft Visual C++ 4.2 Enterprise Edition
  • Microsoft Visual C++ 4.2 Professional Edition



This article was previously published under Q102158


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: kbVC400bug 8.00 8.00c 9.00

Keywords: kbbug kbfix kbvc500fix kbcpponly kbcode kbcompiler KB102158