xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tools/misc: fix array access in xen-hvmctx.c
@ 2012-03-30 13:45 Olaf Hering
  2012-03-30 14:06 ` Tim Deegan
  0 siblings, 1 reply; 6+ messages in thread
From: Olaf Hering @ 2012-03-30 13:45 UTC (permalink / raw)
  To: xen-devel

# HG changeset patch
# User Olaf Hering <olaf@aepfle.de>
# Date 1333114977 -7200
# Node ID 769fb4057e369d7e102b569491861ac5fe9f007d
# Parent  14609be41f369c26e759c5d63cc0d2be2fc5b9b6
tools/misc: fix array access in xen-hvmctx.c

xen-hvmctx.c: In function ‘main’:
xen-hvmctx.c:126:39: error: array subscript is above array bounds
xen-hvmctx.c:126:25: error: array subscript is above array bounds

Signed-off-by: Olaf Hering <olaf@aepfle.de>

diff -r 14609be41f36 -r 769fb4057e36 tools/misc/xen-hvmctx.c
--- a/tools/misc/xen-hvmctx.c
+++ b/tools/misc/xen-hvmctx.c
@@ -121,7 +121,7 @@ static void dump_fpu(void *p)
                i, r->mm[i].hi, r->mm[i].lo,
                r->mm[i].pad[2], r->mm[i].pad[1], r->mm[i].pad[0]);
 
-    for ( i = 0 ; i < 16 ; i++ ) 
+    for ( i = 0 ; i < 15 ; i++ ) 
         printf("          xmm%2.2i 0x%16.16"PRIx64"%16.16"PRIx64"\n",
                i, r->xmm[i].hi, r->xmm[i].lo);
     
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2012-04-24 17:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-30 13:45 [PATCH] tools/misc: fix array access in xen-hvmctx.c Olaf Hering
2012-03-30 14:06 ` Tim Deegan
2012-04-02 15:01   ` Ian Jackson
2012-04-12  8:02     ` Tim Deegan
2012-04-18 11:53       ` Tim Deegan
2012-04-24 17:39   ` Ian Jackson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).