mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 21:23:04 +01:00
Fix #7844 - Removing first column with SET WIDTH crashes ISQL.
This commit is contained in:
parent
851c59bf90
commit
fc9c84b998
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user