http://bugzilla.opensuse.org/show_bug.cgi?id=1160331 http://bugzilla.opensuse.org/show_bug.cgi?id=1160331#c6 --- Comment #6 from Fabian Vogt <fabian@ritter-vogt.de> --- Instead of mFileURL = nsCString( "file://" ); mFileURL.Append( output[ 0 ] ); it should look like this (untested): nsCOMPtr<nsIFile> localfile; nsresult rv = NS_NewNativeLocalFile( output[ 0 ], PR_FALSE, getter_AddRefs(localfile)); if (NS_FAILED(rv)) return v; rv = net_GetURLSpecFromActualFile(localfile, mFileURL); if (NS_FAILED(rv)) return v; -- You are receiving this mail because: You are on the CC list for the bug.