Skip to content

Commit

Permalink
UI: Fix uninitialized memory access in OBSPropertiesView
Browse files Browse the repository at this point in the history
Bug introduced in b0528e0. Closes
#5934.
  • Loading branch information
notr1ch committed Feb 8, 2022
1 parent b0528e0 commit aa73de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/properties-view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class OBSPropertiesView : public VScrollArea {
properties_t properties;
OBSData settings;
OBSWeakObjectAutoRelease weakObj;
void *rawObj;
void *rawObj = nullptr;
std::string type;
PropertiesReloadCallback reloadCallback;
PropertiesUpdateCallback callback = nullptr;
Expand Down

1 comment on commit aa73de9

@alissondesigner2022

This comment was marked as off-topic.

Please sign in to comment.