Remove variable length which is not really used from JSGlobal_parseFloat.

Gerald Pfeifer gerald at pfeifer.com
Fri Apr 30 18:28:58 CDT 2010


---
 dlls/jscript/global.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/jscript/global.c b/dlls/jscript/global.c
index af142ed..92a0cbe 100644
--- a/dlls/jscript/global.c
+++ b/dlls/jscript/global.c
@@ -550,7 +550,7 @@ static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
         VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
 {
     LONGLONG d = 0, hlp;
-    int exp = 0, length;
+    int exp = 0;
     VARIANT *arg;
     WCHAR *str;
     BSTR val_str = NULL;
@@ -569,7 +569,6 @@ static HRESULT JSGlobal_parseFloat(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
         return hres;
 
     str = val_str;
-    length = SysStringLen(val_str);
 
     while(isspaceW(*str)) str++;
 
-- 
1.6.6.2



More information about the wine-patches mailing list