fixed transposed args, we now pass the listener in as we're supposed to when we find a 1-to-1 mapping

This commit is contained in:
valeski%netscape.com 1999-08-26 14:33:25 +00:00
Родитель a1171738f9
Коммит 394c235b4e
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -687,7 +687,8 @@ nsStreamConverterService::AsyncConvertData(const PRUnichar *aFromType,
NS_RELEASE(converter);
if (NS_FAILED(rv)) return rv;
rv = conv->AsyncConvertData(aFromType, aToType, nsnull, aListener);
// XXX we should pass some context through
rv = conv->AsyncConvertData(aFromType, aToType, aListener, nsnull);
NS_RELEASE(conv);
}