diff options
| author | 2008-07-02 14:20:38 +0000 | |
|---|---|---|
| committer | 2008-07-02 14:20:38 +0000 | |
| commit | f4ea51671f367d6e473049d52919a3c879329c6f (patch) | |
| tree | 1cfd0b16185ae251f3db8fad2a66e07190e7fa8b /src/modules/m_xmlsocket.cpp | |
| parent | Fix an off-by-one which could possibly perhaps cause djGrrr/satmd's bug by dr... (diff) | |
Forward port r9946: make SVSHOLD silent to avoid useless irritation to opers
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9947 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_xmlsocket.cpp')
| -rw-r--r-- | src/modules/m_xmlsocket.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/m_xmlsocket.cpp b/src/modules/m_xmlsocket.cpp index 0e29cb993..2973ed187 100644 --- a/src/modules/m_xmlsocket.cpp +++ b/src/modules/m_xmlsocket.cpp @@ -170,7 +170,10 @@ class ModuleXMLSocket : public Module if ((tmpbuffer[n] == '\r') || (tmpbuffer[n] == '\n')) tmpbuffer[n] = 0; - user->AddWriteBuf(std::string(tmpbuffer,count)); + std::string buf(tmpbuffer, count); + LineBuffer *l = new LineBuffer(buf); + l->SetRefcount(1); + user->AddWriteBuf(l); delete [] tmpbuffer; return 1; |
