Closed GoogleCodeExporter closed 9 years ago
Hmm I think the problem is that the file is not opened in binary mode. Can you
try to replace the line:
File "scudette/volatility/plugins/overlays/linux/dwarfparser.py", line 319, in
<module>
parser = DWARFParser(open(sys.argv[1]))
with
File "scudette/volatility/plugins/overlays/linux/dwarfparser.py", line 319, in
<module>
parser = DWARFParser(open(sys.argv[1], "rb"))
Original comment by scude...@gmail.com
on 24 Jul 2012 at 3:44
You are right ;)
The problem is that the file is not opened in binary mode.
Thank you!
Original comment by sebastie...@gmail.com
on 24 Jul 2012 at 4:01
Original comment by mike.auty@gmail.com
on 29 Jul 2012 at 9:51
Fixed by r2114
Original comment by scude...@gmail.com
on 30 Jul 2012 at 4:25
Original issue reported on code.google.com by
sebastie...@gmail.com
on 24 Jul 2012 at 3:11