diff options
author | Craig Tiller <ctiller@google.com> | 2016-02-18 08:01:19 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-02-18 08:01:19 -0800 |
commit | d0a8ae126625856aa84ba151fc5584b60097a65e (patch) | |
tree | 373697e46358d4f49b17485d68bbdacf46263e0a /test/core/security | |
parent | 311445fd32956e9383823400c82ce3fcd71b2b31 (diff) |
Move worker into pollset
Diffstat (limited to 'test/core/security')
-rw-r--r-- | test/core/security/oauth2_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/security/oauth2_utils.c b/test/core/security/oauth2_utils.c index 55ac31e62c..4dd595df95 100644 --- a/test/core/security/oauth2_utils.c +++ b/test/core/security/oauth2_utils.c @@ -95,7 +95,7 @@ char *grpc_test_fetch_oauth2_token_with_credentials( gpr_mu_lock(GRPC_POLLSET_MU(&request.pollset)); while (!request.is_done) { - grpc_pollset_worker worker; + grpc_pollset_worker *worker = NULL; grpc_pollset_work(&exec_ctx, &request.pollset, &worker, gpr_now(GPR_CLOCK_MONOTONIC), gpr_inf_future(GPR_CLOCK_MONOTONIC)); |