djhenderson / pefile

Automatically exported from code.google.com/p/pefile
Other
0 stars 0 forks source link

peutils.py line 423 #59

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
if value == '??' or value == '?0' :

should be

if '?' in value:

This allows (no parsing errors) on some of the signatures that look for various 
combinations of don't cares.

Original issue reported on code.google.com by soos...@gmail.com on 3 Dec 2014 at 10:47

GoogleCodeExporter commented 9 years ago
Thanks!

Original comment by ero.carr...@gmail.com on 6 Dec 2014 at 11:48