From e170965c93ae838f3eff00f7558de5186268dd8b Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 4 Aug 2013 17:04:15 +0100 Subject: [PATCH] Added patch from Dmitry to fix crash on delayed message from contact not in roster fixes #219 --- src/ui/core.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui/core.c b/src/ui/core.c index 126fe127..83839952 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -399,10 +399,12 @@ ui_incoming_msg(const char * const from, const char * const message, if (tv_stamp == NULL) { win_print_time(window, '-'); } else { - // if show users status first, when receiving message via delayed delivery + // show users status first, when receiving message via delayed delivery if (win_created) { PContact pcontact = roster_get_contact(from); - win_show_contact(window, pcontact); + if (pcontact != NULL) { + win_show_contact(window, pcontact); + } } GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp); gchar *date_fmt = g_date_time_format(time, "%H:%M:%S");