Commit d182a123 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

mshtml: Print initialized anchor (Coverity).

parent 7b0cea0d
......@@ -86,9 +86,8 @@ static HRESULT navigate_anchor(HTMLAnchorElement *This)
if(NS_SUCCEEDED(nsres)) {
const PRUnichar *target;
TRACE("target %s\n", debugstr_w(target));
nsAString_GetData(&target_str, &target);
TRACE("target %s\n", debugstr_w(target));
if(*target && strcmpiW(target, _selfW)) {
if(!strcmpiW(target, _topW)) {
TRACE("target _top\n");
......
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