mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.dbuffer: Remove redundant code (read_chunk() cannot fail at this point)
This commit is contained in:
parent
f150495cea
commit
586a0d8493
1 changed files with 3 additions and 7 deletions
|
@ -96,13 +96,9 @@ function dbuffer_methods:discard(requested_bytes)
|
|||
end
|
||||
|
||||
local chunk, read_bytes = self:read_chunk(requested_bytes);
|
||||
if chunk then
|
||||
requested_bytes = requested_bytes - read_bytes;
|
||||
if requested_bytes == 0 then -- Already read everything we need
|
||||
return true;
|
||||
end
|
||||
else
|
||||
return nil;
|
||||
requested_bytes = requested_bytes - read_bytes;
|
||||
if requested_bytes == 0 then -- Already read everything we need
|
||||
return true;
|
||||
end
|
||||
|
||||
while chunk do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue