From 8e217373e962a1297acbe0a49782d5f22ae56662 Mon Sep 17 00:00:00 2001 From: Terrence Cole Date: Wed, 19 Sep 2012 17:00:03 -0700 Subject: [PATCH] Bug 785551 - Remove an orphaned variable: r=Waldo --HG-- extra : rebase_source : 39b2cd075977cd5ae13d4055fda2658a8cb2cede --- js/src/vm/String.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/js/src/vm/String.cpp b/js/src/vm/String.cpp index 2a16786e0474..02013c9f9d10 100644 --- a/js/src/vm/String.cpp +++ b/js/src/vm/String.cpp @@ -369,7 +369,6 @@ JSInlineString::uninline(JSContext *maybecx) { JS_ASSERT(isInline()); size_t n = length(); - size_t nbytes = (n + 1) * sizeof(jschar); jschar *news = maybecx ? maybecx->pod_malloc(n + 1) : js_pod_malloc(n + 1); if (!news) return NULL;