This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: build break in strcpy.c


> Petar Jovanovic wrote:
> 
> Can you actually build the code after this change?
> 
> You may want to follow up with:
> 
> diff --git a/string/strcpy.c b/string/strcpy.c
> index 91f9cc6..94ca1df 100644
> --- a/string/strcpy.c
> +++ b/string/strcpy.c
> @@ -24,6 +24,6 @@
>  char *
>  strcpy (char *dest, const char *src)
>  {
> -  return memcpy (dest, src, strlen (src) + 1));
> +  return memcpy (dest, src, strlen (src) + 1);
>  }
>  libc_hidden_builtin_def (strcpy)

Sorry, not sure where that extra character came from - it seems to
be in the email with the patch but not in my original code...
Anyway, committed as obvious, and it builds again now.

Wilco



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