зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
a1171738f9
Коммит
394c235b4e
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче