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

coverity#708503 Uninitialized scalar field

Change-Id: I0461aba139275724e533690ca30d3ff3b42dc381
üst f9b1da3a
...@@ -944,6 +944,10 @@ public: ...@@ -944,6 +944,10 @@ public:
struct WW8PLCFxSaveAll struct WW8PLCFxSaveAll
{ {
WW8PLCFxSave1 aS[WW8PLCFMan::MAN_ANZ_PLCF]; WW8PLCFxSave1 aS[WW8PLCFMan::MAN_ANZ_PLCF];
WW8PLCFxSaveAll()
{
memset(aS, 0, sizeof(aS));
}
}; };
#endif // !DUMP #endif // !DUMP
......
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