1
0
Fork 0
This commit is contained in:
Frank Celler 2012-01-04 09:39:41 +01:00
parent 897698dfe2
commit f9288093f0
2 changed files with 3 additions and 3 deletions

View File

@ -231,7 +231,7 @@ int main (int argc, char* argv[]) {
context.Dispose();
v8::V8::Dispose();
return result;
return 0;
}
////////////////////////////////////////////////////////////////////////////////

View File

@ -1827,7 +1827,7 @@ static v8::Handle<v8::Value> JS_Execute (v8::Arguments const& argv) {
v8::Handle<v8::String> key = keys->Get(v8::Integer::New(i))->ToString();
v8::Handle<v8::Value> value = sandbox->Get(key);
if (TRI_IsTraceLogging()) {
if (TRI_IsTraceLogging(__FILE__)) {
v8::String::Utf8Value keyName(key);
if (*keyName != 0) {
@ -1874,7 +1874,7 @@ static v8::Handle<v8::Value> JS_Execute (v8::Arguments const& argv) {
v8::Handle<v8::String> key = keys->Get(v8::Integer::New(i))->ToString();
v8::Handle<v8::Value> value = context->Global()->Get(key);
if (TRI_IsTraceLogging()) {
if (TRI_IsTraceLogging(__FILE__)) {
v8::String::Utf8Value keyName(key);
if (*keyName != 0) {