mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Avoid an infinite loop by ensuring that the amount of bytes read is greater
than 0 in MDXFileChunk when calculating the checksum This edgecase can be triggered if the file is truncated while the checksum is being calculated (i.e. the EOF is reached) Differential Revision: https://reviews.freebsd.org/D2351 (patch by darius) PR: 196694 Reviewed by: delphij, ngie Submitted by: Daniel O'Connor <darius@dons.net.au> Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
710ec77e3a
commit
6eec0f2bda
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ MDXFileChunk(const char *filename, char *buf, off_t ofs, off_t len)
|
|||
i = read(f, buffer, sizeof(buffer));
|
||||
else
|
||||
i = read(f, buffer, n);
|
||||
if (i < 0)
|
||||
if (i <= 0)
|
||||
break;
|
||||
MDXUpdate(&ctx, buffer, i);
|
||||
n -= i;
|
||||
|
|
|
|||
Loading…
Reference in a new issue