Skip to content

Commit

Permalink
Bug 1826067 - Fix non-unified-build bustage in parser/htmlparser/nsSc…
Browse files Browse the repository at this point in the history
…anner.cpp; r=sergesanspaille

Differential Revision: https://phabricator.services.mozilla.com/D174448
  • Loading branch information
janvarga committed Apr 3, 2023
1 parent d0fc110 commit 07dda2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/htmlparser/nsScanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ nsresult nsScanner::Append(const char* aBuffer, uint32_t aLen) {
AsBytes(mozilla::Span(aBuffer, aLen)),
mozilla::Span(unichars, needed.value()),
false); // Retain bug about failure to handle EOF
MOZ_ASSERT(result != kOutputFull);
MOZ_ASSERT(result != mozilla::kOutputFull);
MOZ_ASSERT(read <= aLen);
MOZ_ASSERT(written <= needed.value());
if (result != mozilla::kInputEmpty) {
Expand Down

0 comments on commit 07dda2f

Please sign in to comment.