FIX: ostrstrea

Last reviewed: September 18, 1997
Article ID: Q116447
1.00 1.50 | 1.00
MS-DOS    | WINDOWS NT
kbprg kbfixlist kbbuglist

The information in this article applies to:

  • Microsoft Visual C++ for Windows, versions 1.0 and 1.5
  • Microsoft Visual C++ 32-bit Edition, version 1.0

SYMPTOMS

Using the ostrstream output operator << to pass a literal string containing quotation marks, as shown in the example below, may cause an incorrect translation of the \" sequence. Instead of passing the quotation marks, the backslash is passed into the resultant string as well.

RESOLUTION

There are two ways to resolve this problem. Both are shown in the sample code in the "MORE INFORMATION" section, below.

  • Use the operator keyword to call the << member function directly:

          (ostrstream(string,length)).operator<< ("\"quoted string\"")
    

    -or-

  • Create an object of type ostrstream, then use the object to call the << operator:

          ostrstream a(string,length);
          a << "\"quoted string\""
    

STATUS

Microsoft has confirmed this to be a bug in the products listed at the beginning of this article. This problem was corrected in Visual C++ version 2.0.

MORE INFORMATION

You can use the following sample code to demonstrate the problem:

Sample Code

/* Compile options needed: none
*/

   #include <iostream.h>
   #include <strstrea.h>

   char s1[80];
   char s2[80];
   char s3[80];

   void main()
   {
      ostrstream(s1,80) << "\"test 1\"";              // bad output here
      cout << s1 << endl;

      (ostrstream(s2,80)).operator<< ("\"test 2\"");  // OK
      cout << s2 << endl;

      ostrstream a(s3,80);
      a << "\"test 3\"";                              // OK
      cout << s3 << endl;
   }


Additional reference words: 1.00 1.50
KBCategory: kbprg kbfixlist kbbuglist
KBSubcategory: CPPLngIss
Keywords : CPPLngIss kbbuglist kbfixlist kbprg
Version : 1.00 1.50 | 1.00
Platform : MS-DOS NT WINDOWS
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: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.