Fix string bustage in DEBUG_pavlov code. r=mozbot, sr=lumpy

This commit is contained in:
pavlov%netscape.com 2002-09-12 08:42:39 +00:00
parent 6818f259e9
commit 48fb8951f4

View File

@ -67,8 +67,8 @@ static void PrintImageDecoders()
if (s) {
nsCOMPtr<nsISupportsCString> ss(do_QueryInterface(s));
nsXPIDLCString xcs;
ss->GetData(getter_Copies(xcs));
nsCAutoString xcs;
ss->GetData(xcs);
NS_NAMED_LITERAL_CSTRING(decoderContract, "@mozilla.org/image/decoder;2?type=");