diff --git a/src/isql/ColList.cpp b/src/isql/ColList.cpp index be814c2e20..342b140928 100644 --- a/src/isql/ColList.cpp +++ b/src/isql/ColList.cpp @@ -95,7 +95,7 @@ bool ColList::remove(const char* name) if (pold) pold->next = p->next; else - m_head = NULL; + m_head = p->next; delete p; --m_count;