1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 18:07:46 +02:00

Merge pull request #32 from FullName/Delta

if tox_new() fails, don't crash and leave the terminal in a broken state
This commit is contained in:
JFreegman 2013-09-10 17:40:12 -07:00
commit 2e84836f8c

View File

@ -91,6 +91,8 @@ static Tox *init_tox()
{
/* Init core */
Tox *m = tox_new();
if (!m)
return NULL;
/* Callbacks */
tox_callback_connectionstatus(m, on_connectionchange, NULL);
@ -403,6 +405,12 @@ int main(int argc, char *argv[])
init_term();
Tox *m = init_tox();
if (!m) {
endwin();
fprintf(stderr, "Failed to initialize network. Aborting...\n");
exit(1);
}
prompt = init_windows(m);
if (f_loadfromfile)