gabdube / native-windows-gui

A light windows GUI toolkit for rust
https://gabdube.github.io/native-windows-gui/
MIT License
1.96k stars 127 forks source link

Fix event handler crash #256

Closed wtodd1 closed 2 years ago

wtodd1 commented 2 years ago

Fixed a crash that occurs when an event handler is unbound from within its own callback. The callback was being accessed without incrementing the reference count, causing the callback to be dropped while still in use.

gabdube commented 2 years ago

Nice catch!