Bug 301780 please reuse the cached Length() value

patch by bugzilla@mcsmurf.de r=jst sr=jst a=bsmedberg
This commit is contained in:
timeless%mozdev.org 2005-07-28 16:22:42 +00:00
Родитель 8077a028f9
Коммит 9cc5022208
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4108,7 +4108,7 @@ nsGlobalWindow::Atob(const nsAString& aAsciiBase64String,
resultLen = ((resultLen * 3) / 4);
char *bin_data = PL_Base64Decode(base64, aAsciiBase64String.Length(),
char *bin_data = PL_Base64Decode(base64, dataLen,
nsnull);
if (!bin_data) {
nsMemory::Free(base64);