pidgin/purple-plugin-pack

a67c80ac8163
Parents 842de31f4722
Children fb4513242cac
some sanity checking in case someone is trying to kill an im message
--- a/irssi/textfmt.c Tue Nov 04 23:08:01 2008 -0500
+++ b/irssi/textfmt.c Wed Nov 05 03:39:13 2008 -0500
@@ -54,6 +54,10 @@
#ifdef HAVE_REGEX_H
#define FORMAT(account, message) { \
+ if(!(message)) \
+ return FALSE; \
+ if(!(*(message))) \
+ return FALSE; \
if(!(account)) \
return FALSE; \
\