Mark Roszko

Results 64 comments of Mark Roszko

@vadz I finally got another crash report. [4b58280a-16ff-4a2d-9a17-5c9f3e00a9c5.zip](https://github.com/wxWidgets/wxWidgets/files/9669358/4b58280a-16ff-4a2d-9a17-5c9f3e00a9c5.zip) KiCad uses our own wx build, our symbol server for this is `https://symbols.kicad.org/kicad-nightly`, the source is wx 3.2.1. This fault is a...

From what I can tell, wxbase32u_net_vc.pdb does exist in our symbol server and you can download it from there https://symbols.kicad.org/kicad-nightly/wxbase32u_net_vc.pdb/86590754EF0E49BEBEEB6271E0ABD8FC1/

You can see the sentry decoded stack trace with file line numbers https://sentry.io/share/issue/6400a2d286974b53bba9d5ba22bf15d3/ From what I can tell, sentry is using our `wxbase32u_net_vc.pdb` with that exact file hash 86590754EF0E49BEBEEB6271E0ABD8FC1 ![image](https://user-images.githubusercontent.com/1838013/192914704-8c67e62b-316e-49f2-aab3-1dfff472f4e4.png)

You are right, here's the pdb that sentry has stored. I need to dig into what went wrong on the symbol server [86590754-ef0e-49be-beeb-6271e0abd8fc-1.zip](https://github.com/wxWidgets/wxWidgets/files/9669878/86590754-ef0e-49be-beeb-6271e0abd8fc-1.zip)

`SetEventHandler` only takes references, there's no way to clear it

Hmm I added Notify( false ) in the only spot we ever would attempt to destruct wxSocketServer but otherwise it's unusual because we only create a single `wxSocketServer` for the...

KIWAY_PLAYER here is just the parent class for the main application frame that exists the entire application session. Could this be an issue on destruction of the frame during application...

Actually looks go with that thought. This part of the code for us is quite legacy so it makes sense it's probably the wrong sequence of destruction Thanks for the...

` wouldn't the same thing happen if you derived your own class from e.g. wxNavigationEnabled?` Yes, the same would happen. However, the hack here is if you #include say, "splitter.h"...

I'm not 100% sure what the link behavior breakage is at the moment, it might have to do with kicad building multiple object libraries under cmake which get linked into...