From 270f1f8d19779a20231a4228286da5e5bf8b2be9 Mon Sep 17 00:00:00 2001 From: w00t Date: Fri, 2 Dec 2005 09:34:46 +0000 Subject: Fix for ID 86, reported by Special git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2107 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_randquote.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index 22c3fe32f..71d54ce63 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -38,13 +38,18 @@ void handle_randquote(char** parameters, int pcntl, userrec *user) std::string str; int fsize; char buf[MAXBUF]; - if (quotes) + if (q_file == "" || quotes->Exists()) { fsize = quotes->FileSize(); str = quotes->GetLine(rand() % fsize); sprintf(buf,"NOTICE %s :%s%s%s",user->nick,prefix.c_str(),str.c_str(),suffix.c_str()); Srv->SendServ(user->fd, buf); } + else + { + sprintf(buf, "NOTICE %s :Your administrator specified an invalid quotes file, please bug them about this.", user->nick); + Srv->SendServ(user->fd, buf); + } return; } -- cgit v1.2.3