aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/error_internal.h
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-03-13 10:27:18 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-03-13 10:27:18 -0700
commit5398a9696398917090619f95530df7f4acaadba6 (patch)
treed2914fef8f93cbb4109dd9df6ad97ddbc2ed5fe0 /src/core/lib/iomgr/error_internal.h
parentd16df8fe1270acbbec45a3a0a52420049dc60a34 (diff)
Fix copy and unref race cond bug
Diffstat (limited to 'src/core/lib/iomgr/error_internal.h')
-rw-r--r--src/core/lib/iomgr/error_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/error_internal.h b/src/core/lib/iomgr/error_internal.h
index fb4814e41f..0718d31f23 100644
--- a/src/core/lib/iomgr/error_internal.h
+++ b/src/core/lib/iomgr/error_internal.h
@@ -48,12 +48,12 @@ struct grpc_linked_error {
struct grpc_error {
gpr_refcount refs;
+ gpr_atm error_string;
uint8_t ints[GRPC_ERROR_INT_MAX];
uint8_t strs[GRPC_ERROR_STR_MAX];
uint8_t times[GRPC_ERROR_TIME_MAX];
uint8_t first_err;
uint8_t last_err;
- gpr_atm error_string;
uint8_t arena_size;
uint8_t arena_capacity;
intptr_t arena[0];