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

coverity#738720 Uninitialized scalar field

Change-Id: If5fc315467be2890fd733d930546b2c12fc97622
üst 8f2405dd
......@@ -80,6 +80,13 @@ typedef struct tagAFID_CACHE
unsigned long LinkedFileTime; /* 0 if not linked */
long Width; /* -1 if not present */
long Height; /* -1 if not present */
tagAFID_CACHE()
: LinkedFileSize(0)
, LinkedFileTime(0)
, Width(0)
, Height(0)
{
}
} AFID_CACHE, * PAFID_CACHE;
/* Maximum string sizes - includes space for null terminator */
......
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