Skip to content

Commit

Permalink
Fix #7844 - Removing first column with SET WIDTH crashes ISQL.
Browse files Browse the repository at this point in the history
  • Loading branch information
asfernandes committed Nov 14, 2023
1 parent 7045e62 commit 8672bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isql/ColList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8672bc2

Please sign in to comment.