https://bugzilla.wikimedia.org/show_bug.cgi?id=8689

--- Comment #5 from Platonides <[email protected]> 2010-05-28 13:52:50 UTC 
---
That line produces:
PHP Fatal error:  Balloc() allocation exceeds list boundary in
includes/parser/Parser.php on line 737

where the relevant lines are:

        foreach ( $lines as $outLine ) {
            $line = trim( $outLine );

            if ( $line == '' ) { # empty line, go to next line
                $out .= $outLine."\n";
                continue;
            }

The error seems to be comparing a numeric string of 2000016 characters ($line)
with the empty string with the == equal. It is fixed by doing a strict
comparison (===). Then the error moves at a different point.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to