зеркало из https://github.com/mozilla/gecko-dev.git
Bug 289068 ASSERTION: WriteToBuffer called with count of zero: 'count', file r:/mozilla/netwerk/cache/src/nsDiskCacheStreams.cpp, line 710
r=jst sr=jst a=shaver
This commit is contained in:
Родитель
4c7f9052d3
Коммит
bbfe7d34e5
|
@ -2171,7 +2171,9 @@ nsHTMLDocument::WriteCommon(const nsAString& aText,
|
|||
|
||||
// Save the data in cache
|
||||
if (mWyciwygChannel) {
|
||||
mWyciwygChannel->WriteToCacheEntry(aText);
|
||||
if (!aText.IsEmpty()) {
|
||||
mWyciwygChannel->WriteToCacheEntry(aText);
|
||||
}
|
||||
|
||||
if (aNewlineTerminate) {
|
||||
mWyciwygChannel->WriteToCacheEntry(new_line);
|
||||
|
|
Загрузка…
Ссылка в новой задаче