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

coverity#708822 Unused pointer value

Change-Id: I6ccd4c2ab97237806652059d6ae2cd23a6dc1625
üst 4d33acbf
...@@ -2295,7 +2295,7 @@ void MathType::HandleSubSupScript(SmNode *pNode,int nLevel) ...@@ -2295,7 +2295,7 @@ void MathType::HandleSubSupScript(SmNode *pNode,int nLevel)
if (pNode->GetSubNode(RSUB+1)) if (pNode->GetSubNode(RSUB+1))
nVariation=2; nVariation=2;
} }
else if (NULL != (pTemp = pNode->GetSubNode(RSUB+1))) else if (NULL != pNode->GetSubNode(RSUB+1))
nVariation=1; nVariation=1;
if (nVariation!=0xff) if (nVariation!=0xff)
......
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