mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +00:00
Use realloc instead of vim_realloc
This commit is contained in:

committed by
Thiago de Arruda

parent
580ababcb5
commit
f8432ef127
@@ -3963,7 +3963,7 @@ skip_add:
|
||||
subs = &temp_subs;
|
||||
}
|
||||
|
||||
l->t = vim_realloc(l->t, newlen * sizeof(nfa_thread_T));
|
||||
l->t = realloc(l->t, newlen * sizeof(nfa_thread_T));
|
||||
l->len = newlen;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user