From: Paul Pluzhnikov Date: Thu, 17 Jul 2008 20:56:11 +0000 (+0000) Subject: Fix for failing gdb.base/auxv.exp on Linux X-Git-Tag: sid-snapshot-20080801~135 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c6467a4fb67c04f23f44969a4705f99809501e3;p=platform%2Fupstream%2Fbinutils.git Fix for failing gdb.base/auxv.exp on Linux --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index de6dbc2..a02b93a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2008-07-17 Paul Pluzhnikov + + * auxv.c (fprint_target_auxv): Stop at AT_NULL. + 2008-07-15 Andreas Schwab * valops.c (value_cast_pointers): Follow typedefs when checking diff --git a/gdb/auxv.c b/gdb/auxv.c index 292a0d6..549b666 100644 --- a/gdb/auxv.c +++ b/gdb/auxv.c @@ -246,6 +246,8 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops) break; } ++ents; + if (type == AT_NULL) + break; } xfree (data);