diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2008-07-17 20:56:11 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2008-07-17 20:56:11 +0000 |
commit | 7c6467a4fb67c04f23f44969a4705f99809501e3 (patch) | |
tree | 7ba076a0ce1ba0119c07baf47dec116cc3f8ac6b /gdb/auxv.c | |
parent | becf64774cdedd594ecd268e5822bf7fc60333bc (diff) | |
download | binutils-7c6467a4fb67c04f23f44969a4705f99809501e3.zip binutils-7c6467a4fb67c04f23f44969a4705f99809501e3.tar.gz binutils-7c6467a4fb67c04f23f44969a4705f99809501e3.tar.bz2 |
Fix for failing gdb.base/auxv.exp on Linux
Diffstat (limited to 'gdb/auxv.c')
-rw-r--r-- | gdb/auxv.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -246,6 +246,8 @@ fprint_target_auxv (struct ui_file *file, struct target_ops *ops) break; } ++ents; + if (type == AT_NULL) + break; } xfree (data); |