mirror of
https://github.com/upx/upx
synced 2025-10-05 19:20:23 +08:00
Fixed canUnpackVersion().
committer: mfx <mfx> 1034637154 +0000
This commit is contained in:
parent
13f4f7ffdd
commit
bd191af41b
|
@ -61,7 +61,7 @@ public:
|
|||
|
||||
// unpacker capabilities
|
||||
virtual bool canUnpackVersion(int version) const
|
||||
{ return (version == 12); }
|
||||
{ return (version >= 12 && version <= 13); }
|
||||
|
||||
protected:
|
||||
virtual int readFileHeader();
|
||||
|
|
Loading…
Reference in New Issue
Block a user