use and XPIDLCString and prevent a leak. r=alecf

This commit is contained in:
sspitzer%netscape.com 2000-02-05 08:24:07 +00:00
Родитель ae8feb7bcd
Коммит 1368378b97
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -437,11 +437,11 @@ NS_IMETHODIMP nsPref::EvaluateConfigScriptFile(const char * js_buffer,
PRBool bCallbacks)
//----------------------------------------------------------------------------------------
{
char* path; // GRR COM again.
fileSpec->GetNativePath(&path);
nsXPIDLCString path;
fileSpec->GetNativePath(getter_Copies(path));
return _convertRes(PREF_EvaluateConfigScript(js_buffer,
length,
path, // bad, but not used for parsing.
(const char *)path, // bad, but not used for parsing.
bGlobalContext,
bCallbacks,
PR_TRUE));