Patch to fix from

submit on Mac for
                                                                                   Acrobat bug
                                                                                   76932 r=av
                                                                                   sr=attinasi


git-svn-id: svn://10.0.0.236/trunk@93353 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterlubczynski%netscape.com
2001-04-28 02:21:25 +00:00
parent c566e90b73
commit 182f6664ff
2 changed files with 34 additions and 16 deletions

View File

@@ -93,6 +93,7 @@
#include "nsIMIMEService.h"
#include "nsCExternalHandlerService.h"
#include "nsILocalFile.h"
#include "nsIFileChannel.h"
#ifdef XP_UNIX
#if defined(MOZ_WIDGET_GTK)
@@ -4019,16 +4020,24 @@ NS_IMETHODIMP nsPluginHostImpl::NewPluginURLStream(const nsString& aURL,
// In the file case, hand the filename off to NewPostDataStream
if (aIsFile)
{
// If the filename does not start with file:///, try
// passing it through unmodified
const char *filename = aPostData;
if (! PL_strncasecmp("file:///", filename, 8))
filename += 8;
nsXPIDLCString filename;
// tell the listener about it so it will delete the file later
listenerPeer->SetLocalFile(filename);
nsCOMPtr<nsIURI> url;
NS_NewURI(getter_AddRefs(url), aPostData);
nsCOMPtr<nsIFileURL> fileURL(do_QueryInterface(url));
if (fileURL) {
nsCOMPtr<nsIFile> file;
fileURL->GetFile(getter_AddRefs(file));
nsCOMPtr<nsILocalFile> localFile(do_QueryInterface(file));
if (localFile) {
localFile->GetPath(getter_Copies(filename));
NS_NewPostDataStream(getter_AddRefs(postDataStream), aIsFile, filename, 0);
// tell the listener about it so it will delete the file later
listenerPeer->SetLocalFile(filename);
NS_NewPostDataStream(getter_AddRefs(postDataStream), aIsFile, filename, 0);
}
}
}
else
{