Article ID: 198477 - Last Review: December 2, 2003 - Revision: 4.0 PRB: Use of /ZI May Cause Access ViolationThis article was previously published under Q198477 NOTE: Microsoft Visual C++ .NET (2002) and Visual C++ .NET (2003)
support both the managed code model that is provided by the .NET Framework and
the unmanaged native Windows code model. The information in this article
applies to unmanaged Visual C++ code only. On This PageSYMPTOMS 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:
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 | Article Translations
|
Back to the top
