Bug 785551 - Remove an orphaned variable: r=Waldo

--HG--
extra : rebase_source : 39b2cd075977cd5ae13d4055fda2658a8cb2cede
This commit is contained in:
Terrence Cole 2012-09-19 17:00:03 -07:00
parent 33920bbc8a
commit 8c13717d47

View File

@ -369,7 +369,6 @@ JSInlineString::uninline(JSContext *maybecx)
{ {
JS_ASSERT(isInline()); JS_ASSERT(isInline());
size_t n = length(); size_t n = length();
size_t nbytes = (n + 1) * sizeof(jschar);
jschar *news = maybecx ? maybecx->pod_malloc<jschar>(n + 1) : js_pod_malloc<jschar>(n + 1); jschar *news = maybecx ? maybecx->pod_malloc<jschar>(n + 1) : js_pod_malloc<jschar>(n + 1);
if (!news) if (!news)
return NULL; return NULL;