Skip to content
Snippets Groups Projects
Commit 3c70377d authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8370 from lyuxuan/fix_handshake_malloc

change from malloc to gpr_malloc
parents 06755b7c f635fb90
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,7 @@ void grpc_handshake_manager_do_handshake(
gpr_timespec deadline, grpc_tcp_server_acceptor* acceptor,
grpc_handshaker_done_cb cb, void* user_data) {
grpc_channel_args* args_copy = grpc_channel_args_copy(args);
gpr_slice_buffer* read_buffer = malloc(sizeof(*read_buffer));
gpr_slice_buffer* read_buffer = gpr_malloc(sizeof(*read_buffer));
gpr_slice_buffer_init(read_buffer);
if (mgr->count == 0) {
// No handshakers registered, so we just immediately call the done
......
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