Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
5160fdab
Commit
5160fdab
authored
8 years ago
by
apolcyn
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7963 from apolcyn/fix_server_leak
destroy byte buffer reader after use
parents
c3a062db
67656532
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/csharp/ext/grpc_csharp_ext.c
+5
-1
5 additions, 1 deletion
src/csharp/ext/grpc_csharp_ext.c
with
5 additions
and
1 deletion
src/csharp/ext/grpc_csharp_ext.c
+
5
−
1
View file @
5160fdab
...
...
@@ -255,8 +255,10 @@ GPR_EXPORT intptr_t GPR_CALLTYPE grpcsharp_batch_context_recv_message_length(
}
GPR_ASSERT
(
grpc_byte_buffer_reader_init
(
&
reader
,
ctx
->
recv_message
));
intptr_t
result
=
(
intptr_t
)
grpc_byte_buffer_length
(
reader
.
buffer_out
);
grpc_byte_buffer_reader_destroy
(
&
reader
);
return
(
intptr_t
)
grpc_byte_buffer_length
(
reader
.
buffer_out
)
;
return
result
;
}
/*
...
...
@@ -279,6 +281,8 @@ GPR_EXPORT void GPR_CALLTYPE grpcsharp_batch_context_recv_message_to_buffer(
offset
+=
len
;
gpr_slice_unref
(
slice
);
}
grpc_byte_buffer_reader_destroy
(
&
reader
);
}
GPR_EXPORT
grpc_status_code
GPR_CALLTYPE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment