зеркало из https://github.com/mozilla/pjs.git
Fixed a minor bug.
This commit is contained in:
Родитель
28b065c896
Коммит
3f1f1a04d9
|
@ -114,7 +114,9 @@ TestListener::OnDataAvailable(nsIRequest *req, nsISupports *ctx,
|
|||
PRUint32 nread = 0;
|
||||
|
||||
while (count) {
|
||||
rv = is->Read(buf, sizeof(buf), &nread);
|
||||
PRUint32 amount = PR_MIN(count, sizeof(buf));
|
||||
|
||||
rv = is->Read(buf, amount, &nread);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
fwrite(buf, nread, 1, mFile);
|
||||
|
|
Загрузка…
Ссылка в новой задаче