Skip to content

Don't use fn pointers when they can be NULL: it's UB

AdminXVII requested to merge fix-ub-fn-pointers into master

Using nullable fn pointers is UB in rust. Use an option and/or an union to avoid it.

Merge request reports