summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_censor.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp
index 40e4ee92b..769e6e493 100644
--- a/src/modules/m_censor.cpp
+++ b/src/modules/m_censor.cpp
@@ -71,11 +71,14 @@ class ModuleCensor : public Module
virtual void ReplaceLine(std::string &text,std::string pattern, std::string replace)
{
- while (strstr(text.c_str(),pattern.c_str()))
+ if ((pattern != "") && (text != ""))
{
- int pos = text.find(pattern);
- text.erase(pos,pattern.length());
- text.insert(pos,replace);
+ while (strstr(text.c_str(),pattern.c_str()))
+ {
+ int pos = text.find(pattern);
+ text.erase(pos,pattern.length());
+ text.insert(pos,replace);
+ }
}
}