This is the mail archive of the libc-alpha@sources.redhat.com 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: [PATCH] Fix example in charset.texi


On Tue, Jul 22, 2003 at 09:33:17AM -0500, Art Haas wrote:
> Hi.
> 
> The example function returns the wrong variable. 'wcp' is the pointer
> from malloc(), 'result' points at the end of the string.

I think it would be better to s/\*result++/*wcp++/ instead, so that
result describes the result.

> 2003-07-21  Art Haas  <ahaas@airmail.net>
> 
> 	* charset.texi: Fix example to return correct variable.
> 
> Index: manual/charset.texi
> ===================================================================
> RCS file: /cvs/glibc/libc/manual/charset.texi,v
> retrieving revision 1.37
> diff -u -u -r1.37 charset.texi
> --- manual/charset.texi	30 Jun 2002 03:35:20 -0000	1.37
> +++ manual/charset.texi	22 Jul 2003 14:30:22 -0000
> @@ -700,7 +700,7 @@
>        len -= nbytes;
>        s += nbytes;
>      @}
> -  return result;
> +  return wcp;
>  @}
>  @end smallexample
>  

	Jakub


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