| 1854 msim_store_user_info(session, msg, NULL); |
1854 msim_store_user_info(session, msg, NULL); |
| 1855 } else { |
1855 } else { |
| 1856 purple_debug_info("msim", "msim_status: found buddy %s\n", username); |
1856 purple_debug_info("msim", "msim_status: found buddy %s\n", username); |
| 1857 } |
1857 } |
| 1858 |
1858 |
| 1859 /* The status headline is plaintext, but libpurple treats it as HTML, |
1859 if (status_headline) { |
| 1860 * so escape any HTML characters to their entity equivalents. */ |
1860 /* The status headline is plaintext, but libpurple treats it as HTML, |
| 1861 status_headline_escaped = g_markup_escape_text(status_headline, strlen(status_headline)); |
1861 * so escape any HTML characters to their entity equivalents. */ |
| |
1862 status_headline_escaped = g_markup_escape_text(status_headline, strlen(status_headline)); |
| |
1863 } else { |
| |
1864 status_headline_escaped = NULL; |
| |
1865 } |
| |
1866 |
| 1862 g_free(status_headline); |
1867 g_free(status_headline); |
| 1863 |
1868 |
| 1864 if (user->headline) |
1869 if (user->headline) |
| 1865 g_free(user->headline); |
1870 g_free(user->headline); |
| 1866 |
1871 |