Browse Source

src: remove redundant symbol init in node_file.cc

Don't lazy-init the oncomplete symbol string in the After() function,
it has already been created at module init time.
v0.11.6-release
Ben Noordhuis 11 years ago
parent
commit
d684f50acb
  1. 3
      src/node_file.cc

3
src/node_file.cc

@ -209,9 +209,6 @@ static void After(uv_fs_t *req) {
}
}
if (oncomplete_sym.IsEmpty()) {
oncomplete_sym = FIXED_ONE_BYTE_STRING(node_isolate, "oncomplete");
}
MakeCallback(req_wrap->object(), oncomplete_sym, argc, argv);
uv_fs_req_cleanup(&req_wrap->req_);

Loading…
Cancel
Save