Commit 0b0a63b4 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

mshtml: Remove dead assignment (Coverity).

parent 0e486b78
......@@ -959,7 +959,7 @@ static HRESULT nsnode_to_nsstring_rec(nsIContentSerializer *serializer, nsIDOMNo
nsIContentSerializer_AppendText(serializer, nscontent, 0, -1, str);
break;
case COMMENT_NODE:
nsres = nsIContentSerializer_AppendComment(serializer, nscontent, 0, -1, str);
nsIContentSerializer_AppendComment(serializer, nscontent, 0, -1, str);
break;
case DOCUMENT_NODE: {
nsIDocument *nsdoc;
......
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