We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53bb22c commit affb530Copy full SHA for affb530
jlex.php
@@ -109,14 +109,14 @@ protected function yy_advance() {
109
$data = fread($this->yy_reader, 8192);
110
if ($data === false || !strlen($data)) return $this->YY_EOF;
111
$this->yy_buffer .= $data;
112
- $this->yy_buffer_read .= strlen($data);
+ $this->yy_buffer_read += strlen($data);
113
}
114
115
while ($this->yy_buffer_index >= $this->yy_buffer_read) {
116
117
118
119
120
121
return ord($this->yy_buffer[$this->yy_buffer_index++]);
122
0 commit comments