|
@@ -138,8 +138,7 @@ match:
|
|
|
t += 31 + *ip++;
|
|
|
}
|
|
|
m_pos = op - 1;
|
|
|
- m_pos -= le16_to_cpu(get_unaligned(
|
|
|
- (const unsigned short *)ip)) >> 2;
|
|
|
+ m_pos -= get_unaligned_le16(ip) >> 2;
|
|
|
ip += 2;
|
|
|
} else if (t >= 16) {
|
|
|
m_pos = op;
|
|
@@ -157,8 +156,7 @@ match:
|
|
|
}
|
|
|
t += 7 + *ip++;
|
|
|
}
|
|
|
- m_pos -= le16_to_cpu(get_unaligned(
|
|
|
- (const unsigned short *)ip)) >> 2;
|
|
|
+ m_pos -= get_unaligned_le16(ip) >> 2;
|
|
|
ip += 2;
|
|
|
if (m_pos == op)
|
|
|
goto eof_found;
|