@@ -148,8 +148,6 @@ static bool use_debug_agent = false;
148
148
static bool debug_wait_connect = false ;
149
149
static std::string* debug_host; // coverity[leaked_storage]
150
150
static int debug_port = 5858 ;
151
- static std::string* inspector_host; // coverity[leaked_storage]
152
- static int inspector_port = 9229 ;
153
151
static const int v8_default_thread_pool_size = 4 ;
154
152
static int v8_thread_pool_size = v8_default_thread_pool_size;
155
153
static bool prof_process = false ;
@@ -3473,15 +3471,12 @@ static bool ParseDebugOpt(const char* arg) {
3473
3471
return true ;
3474
3472
}
3475
3473
3476
- std::string** const the_host = use_inspector ? &inspector_host : &debug_host;
3477
- int * const the_port = use_inspector ? &inspector_port : &debug_port;
3478
-
3479
3474
// FIXME(bnoordhuis) Move IPv6 address parsing logic to lib/net.js.
3480
3475
// It seems reasonable to support [address]:port notation
3481
3476
// in net.Server#listen() and net.Socket#connect().
3482
3477
const size_t port_len = strlen (port);
3483
3478
if (port[0 ] == ' [' && port[port_len - 1 ] == ' ]' ) {
3484
- *the_host = new std::string (port + 1 , port_len - 2 );
3479
+ debug_host = new std::string (port + 1 , port_len - 2 );
3485
3480
return true ;
3486
3481
}
3487
3482
@@ -3491,13 +3486,13 @@ static bool ParseDebugOpt(const char* arg) {
3491
3486
// if it's not all decimal digits, it's a host name.
3492
3487
for (size_t n = 0 ; port[n] != ' \0 ' ; n += 1 ) {
3493
3488
if (port[n] < ' 0' || port[n] > ' 9' ) {
3494
- *the_host = new std::string (port);
3489
+ debug_host = new std::string (port);
3495
3490
return true ;
3496
3491
}
3497
3492
}
3498
3493
} else {
3499
3494
const bool skip = (colon > port && port[0 ] == ' [' && colon[-1 ] == ' ]' );
3500
- *the_host = new std::string (port + skip, colon - skip);
3495
+ debug_host = new std::string (port + skip, colon - skip);
3501
3496
}
3502
3497
3503
3498
char * endptr;
@@ -3510,7 +3505,7 @@ static bool ParseDebugOpt(const char* arg) {
3510
3505
exit (12 );
3511
3506
}
3512
3507
3513
- *the_port = static_cast <int >(result);
3508
+ debug_port = static_cast <int >(result);
3514
3509
3515
3510
return true ;
3516
3511
}
@@ -3770,8 +3765,7 @@ static void DispatchMessagesDebugAgentCallback(Environment* env) {
3770
3765
static void StartDebug (Environment* env, const char * path, bool wait ) {
3771
3766
CHECK (!debugger_running);
3772
3767
if (use_inspector) {
3773
- debugger_running = v8_platform.StartInspector (env, path, inspector_port,
3774
- wait );
3768
+ debugger_running = v8_platform.StartInspector (env, path, debug_port, wait );
3775
3769
} else {
3776
3770
env->debugger_agent ()->set_dispatch_handler (
3777
3771
DispatchMessagesDebugAgentCallback);
0 commit comments