summaryrefslogtreecommitdiffstats
path: root/dom
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-02-07 11:48:23 +0100
committerwolfbeast <mcwerewolf@gmail.com>2018-02-07 11:48:23 +0100
commite9f79ad46582ca150ef193252851015a031d1556 (patch)
tree6f3b2b914dedc77e7a6d54f678c5c78a1d68ff6c /dom
parent4470f78754246bbd134b65cad2e0a9638418677f (diff)
downloadUXP-e9f79ad46582ca150ef193252851015a031d1556.tar
UXP-e9f79ad46582ca150ef193252851015a031d1556.tar.gz
UXP-e9f79ad46582ca150ef193252851015a031d1556.tar.lz
UXP-e9f79ad46582ca150ef193252851015a031d1556.tar.xz
UXP-e9f79ad46582ca150ef193252851015a031d1556.zip
Fix errant comma in 4470f78754246bbd134b65cad2e0a9638418677f
Diffstat (limited to 'dom')
-rw-r--r--dom/base/nsContentUtils.cpp2
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();
}