Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15330735
D21178.id50433.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D21178.id50433.diff
View Options
diff --git a/src/applications/differential/parser/DifferentialChangesetParser.php b/src/applications/differential/parser/DifferentialChangesetParser.php
--- a/src/applications/differential/parser/DifferentialChangesetParser.php
+++ b/src/applications/differential/parser/DifferentialChangesetParser.php
@@ -980,10 +980,15 @@
$new_side = $this->isCommentOnRightSideWhenDisplayed($comment);
$line = $comment->getLineNumber();
- if ($new_side) {
- $back_line = $new_backmap[$line];
+
+ // See T13524. Lint inlines from Harbormaster may not have a line
+ // number.
+ if ($line === null) {
+ $back_line = null;
+ } else if ($new_side) {
+ $back_line = idx($new_backmap, $line);
} else {
- $back_line = $old_backmap[$line];
+ $back_line = idx($old_backmap, $line);
}
if ($back_line != $line) {
@@ -1002,7 +1007,6 @@
$comment->setLineNumber($back_line);
$comment->setLineLength(0);
-
}
$start = max($comment->getLineNumber() - $lines_context, 0);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 8, 7:58 AM (4 w, 15 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7342195
Default Alt Text
D21178.id50433.diff (1 KB)
Attached To
Mode
D21178: Fix an invalid index access for synthetic lint inline comments from Harbormaster
Attached
Detach File
Event Timeline
Log In to Comment