Page MenuHomePhabricator

D7323.id.diff
No OneTemporary

D7323.id.diff

Index: src/lexer/PhutilLexer.php
===================================================================
--- src/lexer/PhutilLexer.php
+++ src/lexer/PhutilLexer.php
@@ -226,6 +226,7 @@
while ($position < $length) {
$state_rules = idx($rules, end($states), array());
foreach ($state_rules as $rule) {
+
$matches = null;
if (!preg_match($rule[0], $input, $matches, 0, $position)) {
continue;
Index: src/lexer/PhutilSimpleOptionsLexer.php
===================================================================
--- src/lexer/PhutilSimpleOptionsLexer.php
+++ src/lexer/PhutilSimpleOptionsLexer.php
@@ -78,11 +78,13 @@
array('[^\'\\\\]+', 'word'),
array("'", "'", '!pop'),
array('\\\\.', 'esc'),
+ array('\\\\$', '!pop'),
),
'string2' => array(
array('[^"\\\\]+', 'word'),
array('"', '"', '!pop'),
array('\\\\.', 'esc'),
+ array('\\\\$', '!pop'),
),
);
}
Index: src/parser/__tests__/PhutilSimpleOptionsTestCase.php
===================================================================
--- src/parser/__tests__/PhutilSimpleOptionsTestCase.php
+++ src/parser/__tests__/PhutilSimpleOptionsTestCase.php
@@ -80,6 +80,25 @@
}
}
+ public function testSimpleOptionsUnterminatedStrings() {
+ $list = array(
+ '"',
+ "'",
+ 'a="',
+ "a='",
+ 'a="\\',
+ "a='\\",
+ );
+
+ foreach ($list as $input) {
+ $parser = new PhutilSimpleOptions();
+ $this->assertEqual(
+ array(),
+ $parser->parse($input),
+ "Correct failing parse of invalid input: {$input}");
+ }
+ }
+
public function testSimpleOptionsUnparse() {
$map = array(
'' => array(),

File Metadata

Mime Type
text/plain
Expires
Thu, Mar 20, 1:05 AM (2 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7709566
Default Alt Text
D7323.id.diff (1 KB)

Event Timeline