diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-03-29 01:05:04 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-31 07:31:47 -0300 |
commit | 0e998066b2533de3cf87ece1068839e60e128f1a (patch) | |
tree | 0dc09cd25ef39a59e6f9c1c41493e11bacea8f79 /src/normal.c | |
parent | 7bdd1f1898c6c94326e4642d8f51f74cc14b5f9d (diff) | |
download | rneovim-0e998066b2533de3cf87ece1068839e60e128f1a.tar.gz rneovim-0e998066b2533de3cf87ece1068839e60e128f1a.tar.bz2 rneovim-0e998066b2533de3cf87ece1068839e60e128f1a.zip |
xrealloc(): similar to xmalloc()
Replaced all calls to realloc by xrealloc. All `== NULL` tests can be removed
and the code within `!= NULL` tests can be unwrapped.
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c index 7610520780..429dbea7b0 100644 --- a/src/normal.c +++ b/src/normal.c @@ -4496,7 +4496,7 @@ static void nv_ident(cmdarg_T *cap) vim_free(buf); return; } - newbuf = (char_u *)realloc(buf, STRLEN(buf) + STRLEN(p) + 1); + newbuf = (char_u *)xrealloc(buf, STRLEN(buf) + STRLEN(p) + 1); if (newbuf == NULL) { vim_free(buf); vim_free(p); |