Adding comment at IsEnoughSpaceForDownload() method.

This commit is contained in:
Vladimir Byko-Ianko 2017-05-11 14:09:40 +03:00 committed by r.kuznetsov
parent aa75d98f6d
commit c0099b86ce

View file

@ -33,6 +33,9 @@ bool IsEnoughSpaceForDownload(TCountryId const & countryId, Storage const & stor
{
NodeAttrs nodeAttrs;
storage.GetNodeAttrs(countryId, nodeAttrs);
// The type of nodeAttrs.m_mwmSize and nodeAttrs.m_localMwmSize is TMwmSize (uint64_t).
// The condition below is necessary to prevent passing a big positive number as the first
// parameter of IsEnoughSpaceForDownload().
return IsEnoughSpaceForDownload(nodeAttrs.m_mwmSize > nodeAttrs.m_localMwmSize
? nodeAttrs.m_mwmSize - nodeAttrs.m_localMwmSize
: 0, storage.GetMaxMwmSizeBytes());