Commit e947b948 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Code cleanup.

parent 80afd749
...@@ -315,10 +315,9 @@ static BOOL load_gecko(void) ...@@ -315,10 +315,9 @@ static BOOL load_gecko(void)
} }
} }
NS_StringContainerInit(&path); nsAString_Init(&path, gre_path);
NS_StringSetData(&path, gre_path, PR_UINT32_MAX);
nsres = NS_NewLocalFile(&path, FALSE, &gre_dir); nsres = NS_NewLocalFile(&path, FALSE, &gre_dir);
NS_StringContainerFinish(&path); nsAString_Finish(&path);
if(NS_FAILED(nsres)) { if(NS_FAILED(nsres)) {
ERR("NS_NewLocalFile failed: %08lx\n", nsres); ERR("NS_NewLocalFile failed: %08lx\n", nsres);
FreeLibrary(hXPCOM); FreeLibrary(hXPCOM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment