From add6dd39b9e5872b865b74caef4e143f0e12df78 Mon Sep 17 00:00:00 2001 From: "sicking%bigfoot.com" Date: Tue, 4 Mar 2003 14:19:07 +0000 Subject: [PATCH] fix missing return-at-end. r/sr=peterv. no bug git-svn-id: svn://10.0.0.236/trunk@138860 18797224-902f-48f8-a5cc-f745e15eee43 --- .../transformiix/source/xslt/functions/txKeyFunctionCall.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mozilla/extensions/transformiix/source/xslt/functions/txKeyFunctionCall.cpp b/mozilla/extensions/transformiix/source/xslt/functions/txKeyFunctionCall.cpp index c2c36e16f5c..af89eebc64b 100644 --- a/mozilla/extensions/transformiix/source/xslt/functions/txKeyFunctionCall.cpp +++ b/mozilla/extensions/transformiix/source/xslt/functions/txKeyFunctionCall.cpp @@ -263,8 +263,7 @@ txKeyHash::init() nsresult rv = mKeyValues.Init(8); NS_ENSURE_SUCCESS(rv, rv); - rv = mIndexedKeys.Init(1); - NS_ENSURE_SUCCESS(rv, rv); + return mIndexedKeys.Init(1); } /**