avoid undefined variable next_quote
This commit is contained in:
@@ -77,8 +77,12 @@ while (!($finished && $i >= $len) && !$error && !$timeout_passed) {
|
|||||||
$first_quote = strpos($buffer, '\'', $i);
|
$first_quote = strpos($buffer, '\'', $i);
|
||||||
if ($first_quote === FALSE) {
|
if ($first_quote === FALSE) {
|
||||||
$first_quote = $big_value;
|
$first_quote = $big_value;
|
||||||
|
$next_quote = $big_value;
|
||||||
} else {
|
} else {
|
||||||
$next_quote = strpos($buffer, '\'', $first_quote + 1);
|
$next_quote = strpos($buffer, '\'', $first_quote + 1);
|
||||||
|
if ($next_quote === FALSE) {
|
||||||
|
$next_quote = $big_value;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$p2 = strpos($buffer, '"', $i);
|
$p2 = strpos($buffer, '"', $i);
|
||||||
if ($p2 === FALSE) {
|
if ($p2 === FALSE) {
|
||||||
|
Reference in New Issue
Block a user