Fix typo in process sample. The initialization of the map template is
guarded by an IsEmpty check on the request template instead of the map template. TBR=ricow@chromium.org Review URL: http://codereview.chromium.org/2036006 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4621 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
44c17de1b3
commit
4c628ec1bc
@ -294,7 +294,7 @@ Handle<Object> JsHttpRequestProcessor::WrapMap(map<string, string>* obj) {
|
||||
|
||||
// Fetch the template for creating JavaScript map wrappers.
|
||||
// It only has to be created once, which we do on demand.
|
||||
if (request_template_.IsEmpty()) {
|
||||
if (map_template_.IsEmpty()) {
|
||||
Handle<ObjectTemplate> raw_template = MakeMapTemplate();
|
||||
map_template_ = Persistent<ObjectTemplate>::New(raw_template);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user