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

coverity#707928 Uninitialized scalar field

Change-Id: I14d95bc5aee9a79a7fd6f6f41d6a6b21fb2ebf97
üst d3ef7f5e
...@@ -58,7 +58,11 @@ struct Mapping ...@@ -58,7 +58,11 @@ struct Mapping
struct MappingElement struct MappingElement
{ {
MappingElement() {element.nmap = current = 0;} MappingElement()
: current(0)
{
element.type = element.nmap = 0;
}
Mapping element; Mapping element;
sal_Int8 current; sal_Int8 current;
}; };
......
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