From 87ff7e0cdd560b2e1c09fe4958eeab353c57bac1 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 2 Mar 2006 13:02:41 +0000 Subject: Should be working now git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3421 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 869aa7a69..15b51700f 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -2096,9 +2096,12 @@ class TreeSocket : public InspSocket s.get(c); if (c == ' ') { - log(DEBUG,"Pushback(1) '%s'",param); *pptr = 0; - n.push_back(param); + if (*param) + { + log(DEBUG,"Pushback(1) '%s'",param); + n.push_back(param); + } *param = count = 0; pptr = param; item++; @@ -2122,17 +2125,20 @@ class TreeSocket : public InspSocket count++; } } - log(DEBUG,"Pushback(2) '%s'",param); *pptr = 0; - n.push_back(param); + if (*param) + { + log(DEBUG,"Pushback(2) '%s'",param); + n.push_back(param); + } *param = count = 0; pptr = param; } } } + *pptr = 0; if (*param) { - *pptr = 0; log(DEBUG,"Pushback(3) '%s'",param); n.push_back(param); } -- cgit v1.2.3