incorrectly groups bytes to (half) words when in little endian mode
Bug #379037 reported by
-exec-
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
ghex (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: ghex
When in little-endian mode, bytes are displayed in false order, when grouped to halfwords or words.
For example:
File contents:
00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
Ghex views it as:
(in ungrouped mode)
00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
(grouped to words - little endian)
00010203 04050607 08090a0b 0c0d0e0f - incorrect - ordering as in big endian
should be:
03020100 07060504 0b0a0908 0f0e0d0c
To post a comment you must log in.