This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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] c-exp.y, memory leak





> > Date: Sat, 4 Aug 2007 18:51:09 -0700 (PDT)
> > From: msnyder@sonic.net
> >
> > 2007-08-04  Michael Snyder  <msnyder@access-company.com>
> >
> > * c-exp.y (parse_number): Memory leak.
>
> Shouldn't this use xfree()?

Ah, right, that's what I meant to say.   ;-)

>
> > Index: c-exp.y
> > ===================================================================
> > RCS file: /cvs/src/src/gdb/c-exp.y,v
> > retrieving revision 1.38
> > diff -p -r1.38 c-exp.y
> > *** c-exp.y 12 Jun 2007 15:33:03 -0000 1.38
> > --- c-exp.y 5 Aug 2007 01:49:51 -0000
> > *************** parse_number (p, len, parsed_float, puti
> > *** 1096,1104 ****
> >       putithere->typed_val_float.type =
> >         builtin_type (current_gdbarch)->builtin_long_double;
> >     else
> > !     return ERROR;
> >   }
> >
> >         return FLOAT;
> >       }
> >
> > --- 1096,1108 ----
> >       putithere->typed_val_float.type =
> >         builtin_type (current_gdbarch)->builtin_long_double;
> >     else
> > !     {
> > !       free (s);
> > !       return ERROR;
> > !     }
> >   }
> >
> > +       free (s);
> >         return FLOAT;
> >       }
>



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