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

CID#738545 uninitialized scalar

Change-Id: I111ce1b7c8d6dc8e19b2f13a1897a66dec0417f8
üst e31a1b73
......@@ -141,7 +141,7 @@ CBenTOCReader::SearchForLabel(BenByte * pLabel)
unsigned long CurrOffset = Length - BEN_LABEL_SIZE + BEN_MAGIC_BYTES_SIZE -
1;
char Buffer[LABEL_READ_BUFFER_SIZE];
char Buffer[LABEL_READ_BUFFER_SIZE] = {0};
unsigned long BufferStartOffset = Length; // Init to big value
......
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