Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] Fix off-by-one error in record.c (record_list_release_first)
@ 2009-10-12 16:39 Michael Snyder
  2009-10-13  2:17 ` Jiang Jilin
  0 siblings, 1 reply; 8+ messages in thread
From: Michael Snyder @ 2009-10-12 16:39 UTC (permalink / raw)
  To: gdb-patches, Hui Zhu

[-- Attachment #1: Type: text/plain, Size: 492 bytes --]

Hui,

My "info record" patch helped me to find a bug.
I found that, once we start calling record_list_release_first,
we start adding two instructions to the log for every one
instruction we remove.  Therefore the log continues to grow,
even though it is supposed to remain constant in size.

This is because record_insn_num is not incremented if we
call record_list_release_first -- but record_list_release_first
does decrement it.

A one line fix corrects this problem (attached).

Michael


[-- Attachment #2: insn_num.txt --]
[-- Type: text/plain, Size: 570 bytes --]

2009-10-12  Michael Snyder  <msnyder@vmware.com>

	* record.c (record_list_release_first): Do not decrement
	record_insn_num.

Index: record.c
===================================================================
RCS file: /cvs/src/src/gdb/record.c,v
retrieving revision 1.20
diff -u -p -r1.20 record.c
--- record.c	27 Sep 2009 02:49:34 -0000	1.20
+++ record.c	12 Oct 2009 16:33:44 -0000
@@ -209,8 +211,6 @@ record_list_release_first (void)
       if (type == record_end)
 	break;
     }
-
-  record_insn_num--;
 }
 
 /* Add a struct record_entry to record_arch_list.  */

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

end of thread, other threads:[~2009-10-15 16:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-12 16:39 [RFA] Fix off-by-one error in record.c (record_list_release_first) Michael Snyder
2009-10-13  2:17 ` Jiang Jilin
2009-10-13  6:46   ` Hui Zhu
2009-10-13  8:28     ` Jiang Jilin
2009-10-13 18:06     ` Michael Snyder
2009-10-15  3:18       ` Hui Zhu
2009-10-15 16:53         ` Michael Snyder
2009-10-13 17:25   ` Michael Snyder

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