Fix typo in process sample. The initialization of the map template is
authorager@chromium.org <ager@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sat, 8 May 2010 14:45:32 +0000 (14:45 +0000)
committerager@chromium.org <ager@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Sat, 8 May 2010 14:45:32 +0000 (14:45 +0000)
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

samples/process.cc

index 511e21a..9233c0d 100644 (file)
@@ -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);
   }