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

coverity#1169876 Uninitialized scalar field

Change-Id: I71d7ccb5304cc23bb2d93defae6f810bb921c563
üst ff43ba7e
......@@ -55,6 +55,11 @@ struct ParenStackEntry
{
int32_t pairIndex;
UScriptCode scriptCode;
ParenStackEntry()
: pairIndex(0)
, scriptCode(USCRIPT_INVALID_CODE)
{
}
};
class ScriptRun : public UObject {
......
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