Skip to content

Commit

Permalink
src,tools: remove null sentinel from source array
Browse files Browse the repository at this point in the history
PR-URL: #5418
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
bnoordhuis committed Feb 25, 2016
1 parent 96adbe9 commit 33e51fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 17 deletions.
15 changes: 5 additions & 10 deletions src/node_javascript.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
#include "env.h"
#include "env-inl.h"

#include <string.h>
#if !defined(_MSC_VER)
#include <strings.h>
#endif

namespace node {

using v8::HandleScope;
Expand All @@ -26,13 +21,13 @@ Local<String> MainSource(Environment* env) {
void DefineJavaScript(Environment* env, Local<Object> target) {
HandleScope scope(env->isolate());

for (int i = 0; natives[i].name; i++) {
if (natives[i].source != node_native) {
Local<String> name = String::NewFromUtf8(env->isolate(), natives[i].name);
for (auto native : natives) {
if (native.source != node_native) {
Local<String> name = String::NewFromUtf8(env->isolate(), native.name);
Local<String> source =
String::NewFromUtf8(
env->isolate(), reinterpret_cast<const char*>(natives[i].source),
NewStringType::kNormal, natives[i].source_len).ToLocalChecked();
env->isolate(), reinterpret_cast<const char*>(native.source),
NewStringType::kNormal, native.source_len).ToLocalChecked();
target->Set(name, source);
}
}
Expand Down
8 changes: 1 addition & 7 deletions tools/js2c.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,7 @@ def ReadMacros(lines):
size_t source_len;
};
static const struct _native natives[] = {
%(native_lines)s\
{ NULL, NULL, 0 } /* sentinel */
};
static const struct _native natives[] = { %(native_lines)s };
}
#endif
Expand Down

0 comments on commit 33e51fe

Please sign in to comment.