mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.ringbuffer: Prevent creation of buffer with negative size
Previously this would have been (unsigned)-1 which is a large positive integer.
This commit is contained in:
parent
0bb1474ce6
commit
4bab7af07d
2 changed files with 6 additions and 1 deletions
|
@ -12,6 +12,11 @@ describe("util.ringbuffer", function ()
|
|||
rb.new(0);
|
||||
end);
|
||||
end);
|
||||
it("won't create a negatively sized buffer", function ()
|
||||
assert.has_error(function ()
|
||||
rb.new(-1);
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
describe(":write", function ()
|
||||
local b = rb.new();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue