mirror of https://github.com/nodejs/node.git
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.archived-io.js-v0.10
parent
d2b80b8a60
commit
d684f50acb
|
@ -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…
Reference in New Issue