Skip to content
Snippets Groups Projects
Commit fa1e4d79 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

video: fix uninitialized variable warnings

Refs #46200

Change-Id: Ic6dcb9b50dabf897c05d5d6c9b19e83bc0af874a
parent ee62ff20
Branches
Tags
No related merge requests found
......@@ -94,10 +94,10 @@ class VideoPreference : public Serializable
NON_COPYABLE(VideoPreference);
struct VideoDevice {
std::string name;
std::string channel;
std::string size;
std::string rate;
std::string name = "";
std::string channel = "";
std::string size = "";
std::string rate = "";
};
std::shared_ptr<sfl_video::VideoV4l2ListThread> v4l2List_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment