diff options
-rw-r--r-- | dom/base/nsContentUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp index 321a61f18..1cc352685 100644 --- a/dom/base/nsContentUtils.cpp +++ b/dom/base/nsContentUtils.cpp @@ -4148,7 +4148,7 @@ nsContentUtils::ConvertStringFromEncoding(const nsACString& aEncoding, nsAutoPtr<TextDecoder> decoder(new TextDecoder()); decoder->InitWithEncoding(encoding, false); - decoder->Decode(aInput, len.value(), false,, + decoder->Decode(aInput, len.value(), false, aOutput, rv); return rv.StealNSResult(); } |