mirror of
https://github.com/janet-lang/janet
synced 2024-11-18 14:44:48 +00:00
Merge pull request #952 from rick2600/master
#951 - fix unchecked count in cfun_buffer_new_filled
This commit is contained in:
commit
bbd74b5ae2
@ -178,12 +178,13 @@ JANET_CORE_FN(cfun_buffer_new_filled,
|
||||
"Returns the new buffer.") {
|
||||
janet_arity(argc, 1, 2);
|
||||
int32_t count = janet_getinteger(argv, 0);
|
||||
if (count < 0) count = 0;
|
||||
int32_t byte = 0;
|
||||
if (argc == 2) {
|
||||
byte = janet_getinteger(argv, 1) & 0xFF;
|
||||
}
|
||||
JanetBuffer *buffer = janet_buffer(count);
|
||||
if (buffer->data)
|
||||
if (buffer->data && count > 0)
|
||||
memset(buffer->data, byte, count);
|
||||
buffer->count = count;
|
||||
return janet_wrap_buffer(buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user