BUG in function parameter passing ??????

Sam Holden sholden@pgrad.cs.usyd.edu.au
Thu Aug 27 20:36:00 GMT 1998


Mark.Koennecke@psi.ch writes:
>
>#include <stdio.h>
>#include <stdlib.h>
>#include <assert.h>
>#include <ctype.h>
>/*---------------------------------------------------------------------------*
>/
>  void strtolower(char *pText)
>  {
>    int i;
>    char *pPtr;
>    
>    assert(pText);
>    
>    for(i = 0, pPtr = pText; i < strlen(pText); i++, pPtr++)
>    {
>      *pPtr = tolower(*pPtr);
>    }
>  }
>/*---------------------------------------------------------------------*/
>
>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");
>  
>  printf("Success\n");
>  
>}

Which is expected since "Hello You" is a constant string and thus ends up in
memory which is read only...

Sam

---
There's no such thing as a simple cache bug.
	--Rob Pike
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".



More information about the Cygwin mailing list