1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

remove accidentally introduced debug code

This commit is contained in:
Koichi Sasada 2020-08-02 04:51:15 +09:00
parent b4f58ea300
commit a1246270c5

View file

@ -292,8 +292,8 @@ setup_debug_log(void)
const char *log_config = getenv("RUBY_DEBUG_LOG");
if (log_config) {
fprintf(stderr, "RUBY_DEBUG_LOG=%s\n", log_config);
unsetenv("RUBY_DEBUG_LOG");
if (strcmp(log_config, "mem") == 0) {
if (strcmp(log_config, "mem") == 0) {
debug_log.mem = (char *)malloc(MAX_DEBUG_LOG * MAX_DEBUG_LOG_MESSAGE_LEN);
if (debug_log.mem == NULL) {
fprintf(stderr, "setup_debug_log failed (can't allocate memory)\n");