mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 577918 - mark DEBUG only variables as ifdef DEBUG in parser r=mrbkap a=jst
This commit is contained in:
parent
887490b02e
commit
56b3a85905
@ -318,7 +318,11 @@ Usage: %s [-i intype] [-o outtype] [-f flags] [-w wrapcol] [-c comparison_file]
|
||||
ret = HTML2text(inString, inType, outType, flags, wrapCol, compareAgainst);
|
||||
} // this scopes the nsCOMPtrs
|
||||
// no nsCOMPtrs are allowed to be alive when you call NS_ShutdownXPCOM
|
||||
nsresult rv = NS_ShutdownXPCOM( NULL );
|
||||
|
||||
#ifdef DEBUG
|
||||
nsresult rv =
|
||||
#endif
|
||||
NS_ShutdownXPCOM( NULL );
|
||||
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user