Luminarys / synapse

Synapse BitTorrent Daemon
https://synapse-bt.org
ISC License
855 stars 48 forks source link

Proper check metadata size on lower boundary #243

Closed asb-72 closed 1 year ago

asb-72 commented 1 year ago

If total_size is less than block size, computed size will be zero, fix it.

Luminarys commented 1 year ago

This should fix an issue where total_size being 16384 results in size becoming 0 right?

asb-72 commented 1 year ago

This should fix an issue where total_size being 16384 results in size becoming 0 right?

Yes, if total_size is less or equal to 16384, then the size becomes 0.

And further in the code the slice is equated as self.info_bytes[0..0]

Luminarys commented 1 year ago

Thanks!