Use realloc instead of vim_realloc

This commit is contained in:
Felipe Oliveira Carvalho
2014-03-26 17:31:13 -03:00
committed by Thiago de Arruda
parent 580ababcb5
commit f8432ef127
9 changed files with 11 additions and 14 deletions

View File

@@ -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;
}