X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/00a06b8eb82cf930511fc003bd16d7034e5a0cb5..a2d40703e4a5590a689ace4466f92e590434944d:/methods/https.cc diff --git a/methods/https.cc b/methods/https.cc index a74d2a38b..eec858417 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -82,6 +82,12 @@ HttpsMethod::write_data(void *buffer, size_t size, size_t nmemb, void *userp) if(me->File->Write(buffer, size*nmemb) != true) return false; + me->TotalWritten += size*nmemb; + if(me->TotalWritten > me->Queue->ExpectedSize) + return _error->Error("Writing more data than expected (%llu > %llu)", + me->TotalWritten, me->Queue->ExpectedSize); + + return size*nmemb; }