Skip to content
Snippets Groups Projects
Commit b37cd332 authored by hjk's avatar hjk
Browse files

abi detection: use four byte for four byte magic strings

parent e293e467
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ static QList<Abi> abiOf(const QByteArray &data)
} else {
// Windows PE
// Windows can have its magic bytes everywhere...
int pePos = data.indexOf("PE\0\0");
int pePos = data.indexOf(QByteArray("PE\0\0", 4));
if (pePos >= 0 && pePos + 72 < data.size()) {
Abi::Architecture arch = Abi::UnknownArchitecture;
Abi::OSFlavor flavor = Abi::UnknownFlavor;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment