Index: Source/core/editing/CompositeEditCommand.cpp |
diff --git a/Source/core/editing/CompositeEditCommand.cpp b/Source/core/editing/CompositeEditCommand.cpp |
index 2e0897bea7891c4d74d7ee185db8b4329beabccf..2a6fb149113d60442dd010591007674710c39d2a 100644 |
--- a/Source/core/editing/CompositeEditCommand.cpp |
+++ b/Source/core/editing/CompositeEditCommand.cpp |
@@ -1342,7 +1342,7 @@ bool CompositeEditCommand::breakOutOfEmptyMailBlockquotedParagraph() |
// We want to replace this quoted paragraph with an unquoted one, so insert a br |
// to hold the caret before the highest blockquote. |
insertNodeBefore(br, highestBlockquote); |
- VisiblePosition atBR(positionBeforeNode(br.get())); |
+ VisiblePosition atBR(positionBeforeNode(*br)); |
// If the br we inserted collapsed, for example foo<br><blockquote>...</blockquote>, insert |
// a second one. |
if (!isStartOfParagraph(atBR)) |