Mercurial > pidgin
view src/protocols/zephyr/ZFlsSubs.c @ 13900:47c3d00713af
[gaim-migrate @ 16386]
sf patch #1497232, from Jono Cole, "Segfault in bonjour
when another protocol is logged in"
"The Bonjour protocol plugin was causing Gaim to
segfault on receiving a message when other protocols
were logged in. This is dependant on the active buddies
in the buddy list and has been noticed the most when
msn is used."
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 01 Jul 2006 18:04:55 +0000 |
parents | 64895571248f |
children |
line wrap: on
line source
/* This file is part of the Project Athena Zephyr Notification System. * It contains source for the ZFlushSubscriptions function. * * Created by: Robert French * * Copyright (c) 1987 by the Massachusetts Institute of Technology. * For copying and distribution information, see the file * "mit-copyright.h". */ #include "internal.h" Code_t ZFlushSubscriptions() { register int i; if (!__subscriptions_list) return (ZERR_NONE); for (i=0;i<__subscriptions_num;i++) { free(__subscriptions_list[i].zsub_class); free(__subscriptions_list[i].zsub_classinst); free(__subscriptions_list[i].zsub_recipient); } free((char *)__subscriptions_list); __subscriptions_list = 0; __subscriptions_num = 0; return (ZERR_NONE); }