Skip to content
Snippets Groups Projects
Commit caace811 authored by vjpai's avatar vjpai
Browse files

Fix asan error caused by mismatch in alloc/dealloc between new[] and

regular delete...
parent 16affcce
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ class ClientRequestCreator<ByteBuffer> {
public:
ClientRequestCreator(ByteBuffer* req, const PayloadConfig& payload_config) {
if (payload_config.has_bytebuf_params()) {
std::unique_ptr<char> buf(
std::unique_ptr<char[]> buf(
new char[payload_config.bytebuf_params().req_size()]);
gpr_slice s = gpr_slice_from_copied_buffer(
buf.get(), payload_config.bytebuf_params().req_size());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment