diff -r e5707ffa8f29 -r 60a5d065ca81 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Thu Apr 03 19:48:16 2014 +0200 +++ b/pidgin/gtkconv.c Thu Apr 03 20:36:19 2014 +0200 @@ -7757,7 +7757,7 @@ gtk_label_set_text(GTK_LABEL(gtkconv->menu_label), title); if (pidgin_conv_window_is_active_conversation(conv)) { const char* current_title = gtk_window_get_title(GTK_WINDOW(win->window)); - if (current_title == NULL || strcmp(current_title, title) != 0) + if (current_title == NULL || g_strcmp0(current_title, title) != 0) gtk_window_set_title(GTK_WINDOW(win->window), title); }