# HG changeset patch # User Stu Tomlinson # Date 1141724006 0 # Node ID 1118b6fc3206bf4ebad5edb7277ef6c5da5db1e9 # Parent 96a6285b9879604b860b7e19cee93d6be678284d [gaim-migrate @ 15821] Don't risk dereferencing a NULL pointer, nickname is guaranteed to be non-NULL if we got this far. Fixes CID 21 committer: Tailor Script diff -r 96a6285b9879 -r 1118b6fc3206 src/protocols/silc/ops.c --- a/src/protocols/silc/ops.c Tue Mar 07 08:34:36 2006 +0000 +++ b/src/protocols/silc/ops.c Tue Mar 07 09:33:26 2006 +0000 @@ -1359,7 +1359,7 @@ } buf = g_string_free(s, FALSE); - gaim_notify_userinfo(gc, client_entry->nickname, buf, NULL, NULL); + gaim_notify_userinfo(gc, nickname, buf, NULL, NULL); g_free(buf); } break;