This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

BUG in function parameter passing ??????


Mark.Koennecke@psi.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@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]