# HG changeset patch # User Nathan Walp # Date 1063212400 0 # Node ID ff477c28df7bbf8cc1441489cde25fe833f4755f # Parent 85daebe9b719b96144e1e58570bb43a608b80fea [gaim-migrate @ 7347] this should fix the crash some people have been getting at signon with jabber committer: Tailor Script diff -r 85daebe9b719 -r ff477c28df7b src/blist.c --- a/src/blist.c Wed Sep 10 16:46:01 2003 +0000 +++ b/src/blist.c Wed Sep 10 16:46:40 2003 +0000 @@ -851,7 +851,8 @@ node->next->prev = gnode; node->next = gnode; } else { - gaimbuddylist->root->prev = gnode; + if(gaimbuddylist->root) + gaimbuddylist->root->prev = gnode; gnode->next = gaimbuddylist->root; gnode->prev = NULL; gaimbuddylist->root = gnode;