From e947b948a117ef4bdfa0e24d4b841495199d54bf Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 2 Oct 2006 20:07:13 +0200 Subject: [PATCH] mshtml: Code cleanup. --- dlls/mshtml/nsembed.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/mshtml/nsembed.c b/dlls/mshtml/nsembed.c index cf5fe203809..265150cea9f 100644 --- a/dlls/mshtml/nsembed.c +++ b/dlls/mshtml/nsembed.c @@ -315,10 +315,9 @@ static BOOL load_gecko(void) } } - NS_StringContainerInit(&path); - NS_StringSetData(&path, gre_path, PR_UINT32_MAX); + nsAString_Init(&path, gre_path); nsres = NS_NewLocalFile(&path, FALSE, &gre_dir); - NS_StringContainerFinish(&path); + nsAString_Finish(&path); if(NS_FAILED(nsres)) { ERR("NS_NewLocalFile failed: %08lx\n", nsres); FreeLibrary(hXPCOM);