aboutsummaryrefslogtreecommitdiff
path: root/src/node_http_parser.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-01-06 23:09:39 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-01-07 17:39:57 +0100
commit412b3cee0531ffdbfb9c2b38583513e3d0794bb9 (patch)
tree155bfc6b4688a96cb89be059f6387ef7a03e1feb /src/node_http_parser.cc
parent5d0816bf3e5f29a470356eebc81f703047c0dd73 (diff)
downloadandroid-node-v8-412b3cee0531ffdbfb9c2b38583513e3d0794bb9.tar.gz
android-node-v8-412b3cee0531ffdbfb9c2b38583513e3d0794bb9.tar.bz2
android-node-v8-412b3cee0531ffdbfb9c2b38583513e3d0794bb9.zip
src: pass node_isolate to String::Empty
Diffstat (limited to 'src/node_http_parser.cc')
-rw-r--r--src/node_http_parser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc
index eb05a8fd5f..adddb04906 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.cc
@@ -170,7 +170,7 @@ struct StringPtr {
if (str_)
return String::New(str_, size_);
else
- return String::Empty();
+ return String::Empty(node_isolate);
}