fix illegal access free memory

This commit is contained in:
obdev
2022-11-15 06:40:30 +00:00
committed by wangzelin.wzl
parent d813d37a37
commit 0fa89c683b
2 changed files with 4 additions and 3 deletions

View File

@ -5200,6 +5200,7 @@ void ObBasePartition::reset()
is_empty_partition_name_ = false; is_empty_partition_name_ = false;
tablespace_id_ = OB_INVALID_ID; tablespace_id_ = OB_INVALID_ID;
partition_type_ = PARTITION_TYPE_NORMAL; partition_type_ = PARTITION_TYPE_NORMAL;
name_.reset();
ObSchema::reset(); ObSchema::reset();
} }

View File

@ -241,9 +241,9 @@ int ObExprToOutfileRow::print_field(char *buf, const int64_t buf_len, int64_t &p
OZ(obj.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_)); OZ(obj.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_));
} else if (obj.is_null()) { } else if (obj.is_null()) {
OZ(out_info.escape_.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_)); OZ(out_info.escape_.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_));
OZ(print_wchar_to_buf(buf, buf_len, pos, 'N', out_info.print_params_.cs_type_)); OZ(print_wchar_to_buf(buf, buf_len, pos, 'N', out_info.print_params_.cs_type_));
} else if (obj.is_string_or_lob_locator_type() && obj.get_collation_type() == CS_TYPE_BINARY) { } else if (obj.is_string_or_lob_locator_type() && obj.get_collation_type() == CS_TYPE_BINARY) {
OZ(obj.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_)); OZ(obj.print_plain_str_literal(buf, buf_len, pos, out_info.print_params_));
} else { } else {
OZ(obj.print_plain_str_literal(out_info.tmp_buf_, out_info.tmp_buf_len_, tmp_pos, OZ(obj.print_plain_str_literal(out_info.tmp_buf_, out_info.tmp_buf_len_, tmp_pos,
out_info.print_params_)); out_info.print_params_));