pidgin/purple-plugin-pack

Fixes #333.
org.guifications.plugins
2008-08-03, sadrul
75a5bd5b20ab
Fixes #333.
I cannot reproduce this crash, but looks like the crash happens during
exit, I am thinking perhaps the buddylist window gets closed before the
plugin tries to remove the statusboxes.
/*************************************************************************
* Recursion test module
* by Martijn van Oosterhout <kleptog@svana.org> (C) April 2006
* Licenced under the GNU General Public Licence version 2.
*
* Code to test the recursion module.
*************************************************************************/
#include <stdio.h>
#include "recurse.h"
int
process_entry(char *str, void *ptr)
{
printf("%s\n", str);
return 0;
}
int
main()
{
recurse_directory("/usr/share/zoneinfo", process_entry, main);
return 0;
}