aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/libelf
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-02 10:05:14 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-08-02 10:05:14 +0100
commitd2d0d5dd8307ec9b26a5c110621ef30426ce79d6 (patch)
tree233e62feb4114d8b880278cd57b8f8efb532ab3c /xen/common/libelf
parent9ce0c8557873af4936b3507bc9290ce5c0299baa (diff)
downloadxen-d2d0d5dd8307ec9b26a5c110621ef30426ce79d6.tar.gz
xen-d2d0d5dd8307ec9b26a5c110621ef30426ce79d6.tar.bz2
xen-d2d0d5dd8307ec9b26a5c110621ef30426ce79d6.zip
elfloader: Re-add break stmt I stupidly removed from elf parser.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/libelf')
-rw-r--r--xen/common/libelf/libelf-loader.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xen/common/libelf/libelf-loader.c b/xen/common/libelf/libelf-loader.c
index 21e44be848..3b68036382 100644
--- a/xen/common/libelf/libelf-loader.c
+++ b/xen/common/libelf/libelf-loader.c
@@ -93,6 +93,8 @@ int elf_init(struct elf_binary *elf, const char *image, size_t size)
elf->send = high;
elf_msg(elf, "%s: symbol map: 0x%" PRIx64 " -> 0x%" PRIx64 "\n",
__FUNCTION__, elf->sstart, elf->send);
+
+ break;
}
return 0;