Comment 33 for bug 1958770

Revision history for this message
Kai-Heng Feng (kaihengfeng) wrote :

I think that's a bit different to the original version, which breaks out the loop as soon as "aq_vec" evaluates to false.

So, instead of

if (aq_vec) {
...
}

Should be

if (!aq_vec)
    break;