8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:03:04 +01:00

Fix #7844 - Removing first column with SET WIDTH crashes ISQL.

This commit is contained in:
Adriano dos Santos Fernandes 2023-11-13 22:41:46 -03:00
parent 851c59bf90
commit fc9c84b998

View File

@ -95,7 +95,7 @@ bool ColList::remove(const char* name)
if (pold) if (pold)
pold->next = p->next; pold->next = p->next;
else else
m_head = NULL; m_head = p->next;
delete p; delete p;
--m_count; --m_count;