Skip to content

Commit

Permalink
Inadvertently introduced a segfault on exit on the last commit,
Browse files Browse the repository at this point in the history
while trying to get rid of a compiler warning.  Fixed by this
update.
RTimothyEdwards committed Jan 1, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 8f9c328 commit 006c070
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.3.455
8.3.456
2 changes: 1 addition & 1 deletion utils/main.c
Original file line number Diff line number Diff line change
@@ -800,7 +800,7 @@ mainInitAfterArgs()
void tcl_exit_hook(ClientData clientData)
{
TxResetTerminal();
exit(*(int *)clientData);
exit(*(int *)(&clientData));
}

/*

0 comments on commit 006c070

Please sign in to comment.