forked from qt-creator/qt-creator
debugger: Fix section flag reading on 64 bit targets
Change-Id: Ib69e4484ed14aba4a024be7d3868f58ea76f60b1 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user