Bug 602393: Fix idiotic mistake causing JITs to be blacklisted on all android devices. r=dvander a=blocking-fennec-b1+

This commit is contained in:
Chris Jones 2010-10-06 19:39:19 -05:00
parent eb10eff046
commit ed6f9c8e5a

View File

@ -2213,8 +2213,8 @@ ComputeIsJITBroken()
"SPH-D700", // Samsung i9000, Epic device
NULL
};
for (const char* hw = blacklist[0]; hw; ++hw) {
if (line.npos != line.find(hw)) {
for (const char** hw = &blacklist[0]; *hw; ++hw) {
if (line.npos != line.find(*hw)) {
broken = true;
break;
}