Mail Archives: cygwin/1998/08/28/00:09:16
Mark DOT Koennecke AT psi DOT ch writes:
>
> int main(int argc, char *argv[])
> {
> char pBuffer[132];
>
> /* why does this work? */
> strcpy(pBuffer,"Hello You");
> strtolower(pBuffer);
>
> /* but this gives a segmentation violation under Cygwin*/
> strtolower("Hello You");
>
Because the string "Hello You" is a constant, and is allocated in the
read-only segment of the executable. The buffer pBuffer is allocated
read/write. This is done so that storage for literal strings can be
shared between object files.
There's a compiler option to turn off this behavior. Try adding
-fwritable-strings to your compilation flags.
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -