[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: CVS update: subversion/subversion/libsvn_subr svn_error.c

From: Daniel L. Rall <dlr_at_collab.net>
Date: 2000-07-13 02:53:34 CEST

You're welcome Karl! I wasn't even sure at first...my C's a little
rusty. :)

Karl Fogel wrote:
>
> Thanks, Daniel!
>
> -Karl
>
> dlr@tigris.org writes:
> > User: dlr
> > Date: 00/07/12 20:48:04
> >
> > Modified: subversion/libsvn_subr svn_error.c
> > Log:
> > Corrected invalid pointer deference on assignment introduced during
> > last commit.
> >
> > Revision Changes Path
> > 1.15 +2 -2 subversion/subversion/libsvn_subr/svn_error.c
> >
> > Index: svn_error.c
> > ===================================================================
> > RCS file: /cvs/subversion/subversion/libsvn_subr/svn_error.c,v
> > retrieving revision 1.14
> > retrieving revision 1.15
> > diff -u -r1.14 -r1.15
> > --- svn_error.c 2000/07/13 03:15:55 1.14
> > +++ svn_error.c 2000/07/13 03:48:04 1.15
> > @@ -92,8 +92,8 @@
> > char *strerror_msg; /* A place to store result of strerror() */
> >
> > /* Create the new error structure */
> > - *new_error = (svn_error_t *) ap_palloc (pool,
> > - sizeof(svn_error_t));
> > + new_error = (svn_error_t *) ap_palloc (pool,
> > + sizeof(svn_error_t));
> >
> > /* Create space for strerror()'s result */
> > char *strerror_msg = ap_palloc (pool, 100);
> >
> >
> >

-- 
Daniel Rall <dlr@collab.net>
http://collab.net/ | open source | do the right thing
Received on Sat Oct 21 14:36:05 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.