Added some TODO notes about handling realloc() failures

This commit is contained in:
Paul LeoNerd Evans
2008-10-09 23:53:35 +01:00
parent 2b08f88f19
commit 37156ad580
3 changed files with 4 additions and 1 deletions

View File

@@ -471,6 +471,7 @@ void termkey_pushinput(termkey_t *tk, unsigned char *input, size_t inputlen)
tk->buffsize *= 2;
unsigned char *newbuffer = realloc(tk->buffer, tk->buffsize);
// TODO: Handle realloc() failure
tk->buffer = newbuffer;
}
@@ -503,6 +504,7 @@ termkey_keysym termkey_register_keyname(termkey_t *tk, termkey_keysym sym, const
if(sym >= tk->nkeynames) {
const char **new_keynames = realloc(tk->keynames, sizeof(new_keynames[0]) * (sym + 1));
// TODO: Handle realloc() failure
tk->keynames = new_keynames;
// Fill in the hole