Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* bug in gdb
@ 1999-04-17 16:05 dhawkins
  1999-04-19  9:44 ` Jim Blandy
  0 siblings, 1 reply; 3+ messages in thread
From: dhawkins @ 1999-04-17 16:05 UTC (permalink / raw)
  To: gdb-patches

Found a bug in gdb.  This seems to be the correct fix.  (I give the
code unconditionally to the FSF for what ever they wish to do with
it..., yadda, yadda, yadda).  It does not seem to warrant much
fanfare. 

Changelog entry:
  Fixed a bug where the typevec_size was not being reset to zero after
  the typevec itself had been reset.

--- gdb-4.18.borked/libiberty/cplus-dem.c	Thu Apr  1 20:37:06 1999
+++ gdb-4.18/libiberty/cplus-dem.c	Sat Apr 17 22:50:39 1999
@@ -880,6 +880,8 @@
     {
       free ((char *) work -> typevec);
       work -> typevec = NULL;
+      /* DKH --- The size was not being reset to 0... */
+      work -> typevec_size = 0;
     }
   if (work->tmpl_argvec)
     {

-Dale

-- 
With the mochas, he was strong.
-- E. Hemingway

Beer is proof that God loves us and wants us to be happy.
-- Benjamin Franklin

   Dale K. Hawkins          ||   Your work, no matter how brilliant,
   dhawkins@dimensional.com ||   becomes valuable to others only in
   To Hack, is to Live!     ||   so far as you communicate it to them.



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~1999-04-19  9:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-04-17 16:05 bug in gdb dhawkins
1999-04-19  9:44 ` Jim Blandy
1999-04-19  8:52   ` Jim Blandy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox