mirror of
https://github.com/neovim/neovim.git
synced 2025-09-09 12:58:16 +00:00
Merge #4646 from oni-link/fix.issue.4569.3
Fix for missing output (#4569, ...)
This commit is contained in:
@@ -15,7 +15,7 @@ RBuffer *rbuffer_new(size_t capacity)
|
||||
FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_NONNULL_RET
|
||||
{
|
||||
if (!capacity) {
|
||||
capacity = 0xffff;
|
||||
capacity = 0x10000;
|
||||
}
|
||||
|
||||
RBuffer *rv = xmalloc(sizeof(RBuffer) + capacity);
|
||||
|
Reference in New Issue
Block a user