PRB: Use of /ZI May Cause Access Violation

ID: Q198477


The information in this article applies to:
  • Microsoft Visual C++, 32-bit Editions, version 6.0


SYMPTOMS

Use of the compiler switch /ZI (Program Data Base for Edit and Continue) may cause an access violation if you try to modify a text string.


RESOLUTION

Use one of the following workarounds:

  • In the sample below, change "char * ptr" to "char ptr[]".


  • Do not use the /ZI switch.



STATUS

As per C++ Standard (2.13.4.2) the effect of attempting to modify a string literal is undefined.


MORE INFORMATION

By default the compiler switch /ZI (Program Data Base for Edit and Continue) uses the compiler switch /GF.

The /GF option enables the compiler to pool strings and place them in read-only memory. By placing the strings in read-only memory, the operating system does not need to swap that portion of memory. Instead, it can read the strings back from the image file. It is a good idea to do this as it saves pages of memory from being written to and therefore reduces the working set used by the application. In addition, it allows those pages to be shared between multiple instances of the process that use that image file (.exe or .dll file), further reducing total memory usage in the entire system. Strings placed in read-only memory cannot be modified; if you try to modify them, you will see an Application Error dialog box.

The following code when executed after compile produces an access violation.

Sample Code


   // Test.cpp
   // Compile with: cl /ZI /Od test.cpp

   int main ()
   {
     char* ptr = "Hello World";
     ptr[3] = 'Q';   //Access violation
     return 0;
   } 
Since /ZI is used for debugging with Edit and Continue, the above code works fine in the Release build, where the /ZI switch is not used.

Additional query words:

Keywords : kbCompiler kbVC600
Version : WINNT:6.0
Platform : winnt
Issue type : kbprb


Last Reviewed: July 26, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.