Skip to content

Fix crash by adding missing initialize part for KToggleAction

Ömer Fadıl Usta requested to merge work/usta_fix_null_crash into master

We got checks like if (_dockMuteAction!=nullptr) in code but if _dockMuteAction never initialize even with nullptr so compiler just passes this check ( because _dockMuteAction is looks like random value in itself ) and application crashes whenever we want to call a function over that value

Edited by Ömer Fadıl Usta

Merge request reports