0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.2-035

This commit is contained in:
Bram Moolenaar
2008-11-12 12:08:45 +00:00
parent 9381ab7761
commit 5a22181f59
5 changed files with 8 additions and 5 deletions

View File

@@ -873,7 +873,7 @@ lalloc(size, message)
/* 3. check for available memory: call mch_avail_mem() */
if (mch_avail_mem(TRUE) < KEEP_ROOM && !releasing)
{
vim_free((char *)p); /* System is low... no go! */
free((char *)p); /* System is low... no go! */
p = NULL;
}
else