Properly zero-initialise local variable

This commit is contained in:
baldurk
2018-05-24 11:16:11 +01:00
parent d2cdca45a5
commit 929bd3af49
+1 -1
View File
@@ -348,7 +348,7 @@ SPDBChunk::SPDBChunk(void *chunk)
RDCASSERT(moduledata[0] == CV_SIGNATURE_C13);
std::string localName;
CV_typ_t localType;
CV_typ_t localType = 0;
byte *basePtr = (byte *)&moduledata[1];