Kaydet (Commit) 5f78d620 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1358588 Uninitialized scalar field

Change-Id: I32596c33b9d8fc261d51c880ff1c049879f17509
üst 072b3244
...@@ -59,7 +59,10 @@ struct Result { ...@@ -59,7 +59,10 @@ struct Result {
osl::Condition condition; osl::Condition condition;
bool success; bool success;
OUString result; OUString result;
Result() = default; Result()
: success(false)
{
}
Result(const Result&) = delete; Result(const Result&) = delete;
Result& operator=(const Result&) = delete; Result& operator=(const Result&) = delete;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment