fix bug 39902. check in for m_kato@ga2.so-net.ne.jp a=waterson r=ftang

git-svn-id: svn://10.0.0.236/trunk@73990 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ftang%netscape.com
2000-07-11 06:10:38 +00:00
parent 6f96f77089
commit 871ddb275e

View File

@@ -115,20 +115,15 @@ NS_IMETHODIMP nsFilePicker::Show(PRInt16 *retval)
if (list != NULL) {
result = ::SHGetPathFromIDList(list, (LPSTR)fileBuffer);
if (result) {
nsAutoString pathStr;
PRUnichar *unichar = ConvertFromFileSystemCharset(fileBuffer);
if (nsnull == unichar)
pathStr.AssignWithConversion(fileBuffer);
else {
pathStr.Assign(unichar);
nsMemory::Free( unichar );
}
if (result == PR_TRUE) {
// I think it also needs a conversion here (to unicode since appending to nsString)
// but doing that generates garbage file name, weird.
mFile.Append(fileBuffer);
}
}
// free PIDL
LPMALLOC pMalloc = NULL;
::SHGetMalloc(&pMalloc);
if(pMalloc) {
pMalloc->Free(list);
pMalloc->Release();
}
}
}
@@ -139,7 +134,16 @@ NS_IMETHODIMP nsFilePicker::Show(PRInt16 *retval)
ofn.lStructSize = sizeof(ofn);
char *filterBuffer = mFilterList.ToNewCString();
PRInt32 l = (mFilterList.Length()+2)*2;
char *filterBuffer = (char*) nsMemory::Alloc(l);
int len = WideCharToMultiByte(CP_ACP, 0,
mFilterList.GetUnicode(),
mFilterList.Length(),
filterBuffer,
l, NULL, NULL);
filterBuffer[len] = NULL;
filterBuffer[len+1] = NULL;
if (initialDir && *initialDir) {
ofn.lpstrInitialDir = initialDir;
}