From d2122dbd351535753ec785030f990c3aed8bb29a Mon Sep 17 00:00:00 2001 From: eionrobb Date: Thu, 6 Mar 2014 22:21:23 +0000 Subject: Fix for crash creating the node menu when chatting to buddies who aren't in your buddy list --- steam-mobile/libsteam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam-mobile/libsteam.c b/steam-mobile/libsteam.c index 9aeed88..d9a6f50 100644 --- a/steam-mobile/libsteam.c +++ b/steam-mobile/libsteam.c @@ -1517,7 +1517,7 @@ steam_node_menu(PurpleBlistNode *node) m = g_list_append(m, act); sbuddy = buddy->proto_data; - if (sbuddy->gameid) + if (sbuddy && sbuddy->gameid) { act = purple_menu_action_new("Launch Game", PURPLE_CALLBACK(steam_blist_launch_game), -- cgit v1.2.3