debugger: Fix section flag reading on 64 bit targets

Change-Id: Ib69e4484ed14aba4a024be7d3868f58ea76f60b1
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-06-08 17:27:37 +02:00
committed by hjk
parent c95a0e40f3
commit 609bef7520

View File

@@ -98,7 +98,7 @@ static void parseSectionHeader(const uchar *s, ElfSectionHeader *sh, const ElfDa
{
sh->index = getWord(s, context);
sh->type = getWord(s, context);
sh->flags = getWord(s, context);
sh->flags = getOffset(s, context);
sh->addr = getAddress(s, context);
sh->offset = getOffset(s, context);
sh->size = getOffset(s, context);