Fredrik Fornwall
6 years ago
3 changed files with 28 additions and 2 deletions
@ -0,0 +1,12 @@ |
|||||
|
diff -u -r ../pristine/src/core/ext/transport/chttp2/transport/flow_control.cc ./src/core/ext/transport/chttp2/transport/flow_control.cc |
||||
|
--- ../pristine/src/core/ext/transport/chttp2/transport/flow_control.cc 2018-11-27 01:07:46.866889212 +0000 |
||||
|
+++ ./src/core/ext/transport/chttp2/transport/flow_control.cc 2018-11-27 01:11:22.480304660 +0000 |
||||
|
@@ -190,7 +190,7 @@ |
||||
|
uint32_t TransportFlowControl::MaybeSendUpdate(bool writing_anyway) { |
||||
|
FlowControlTrace trace("t updt sent", this, nullptr); |
||||
|
const uint32_t target_announced_window = |
||||
|
- static_cast<const uint32_t>(target_window()); |
||||
|
+ static_cast<uint32_t>(target_window()); |
||||
|
if ((writing_anyway || announced_window_ <= target_announced_window / 2) && |
||||
|
announced_window_ != target_announced_window) { |
||||
|
const uint32_t announce = static_cast<uint32_t> GPR_CLAMP( |
@ -0,0 +1,15 @@ |
|||||
|
https://github.com/c-ares/c-ares/pull/209/files |
||||
|
|
||||
|
diff -u -r ../pristine/third_party/cares/cares/ares_init.c ./third_party/cares/cares/ares_init.c |
||||
|
--- ../pristine/third_party/cares/cares/ares_init.c 2018-11-27 01:07:47.790878142 +0000 |
||||
|
+++ ./third_party/cares/cares/ares_init.c 2018-11-27 01:08:17.002528134 +0000 |
||||
|
@@ -298,7 +298,8 @@ |
||||
|
(*dest)->sock_func_cb_data = src->sock_func_cb_data; |
||||
|
|
||||
|
strncpy((*dest)->local_dev_name, src->local_dev_name, |
||||
|
- sizeof(src->local_dev_name)); |
||||
|
+ sizeof((*dest)->local_dev_name)); |
||||
|
+ |
||||
|
(*dest)->local_ip4 = src->local_ip4; |
||||
|
memcpy((*dest)->local_ip6, src->local_ip6, sizeof(src->local_ip6)); |
||||
|
|
Loading…
Reference in new issue