Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [Patch] Another small memattr fix.
@ 2002-06-12 16:32 Don Howard
  2002-06-12 19:40 ` Andrew Cagney
  2002-06-14 11:28 ` Kevin Buettner
  0 siblings, 2 replies; 10+ messages in thread
From: Don Howard @ 2002-06-12 16:32 UTC (permalink / raw)
  To: gdb-patches


The following patch fixes a buglet involving memory regions.  

(gdb) mem 0 4 32 wo
(gdb) mem 0xfffffff0 0x100000000 32 wo
invalid memory region: low >= high


2002-06-12  Don Howard  <dhoward@redhat.com>

	* memattr.c (create_mem_region): Permit max addr+1 for upper bound
	of memory regions.


Index: gdb/memattr.c
===================================================================
RCS file: /cvs/src/src/gdb/memattr.c,v
retrieving revision 1.11
diff -p -u -w -r1.11 memattr.c
--- gdb/memattr.c       12 May 2002 04:20:05 -0000      1.11
+++ gdb/memattr.c       12 Jun 2002 23:16:20 -0000
@@ -47,7 +47,7 @@ create_mem_region (CORE_ADDR lo, CORE_AD
   struct mem_region *n, *new;

   /* lo == hi is a useless empty region */
-  if (lo >= hi)
+  if (lo > hi-1)
     {
       printf_unfiltered ("invalid memory region: low >= high\n");


-- 
dhoward@redhat.com
gdb engineering





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

end of thread, other threads:[~2002-06-17 17:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-06-12 16:32 [Patch] Another small memattr fix Don Howard
2002-06-12 19:40 ` Andrew Cagney
2002-06-13 10:33   ` Don Howard
2002-06-14 11:28 ` Kevin Buettner
2002-06-14 12:44   ` Don Howard
2002-06-14 13:00     ` Kevin Buettner
2002-06-14 13:30       ` Andrew Cagney
2002-06-14 14:19         ` Don Howard
2002-06-15 18:28           ` Andrew Cagney
2002-06-17 10:47             ` Don Howard

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