From ac267dd41be0265b23f2c1666e819994518e577a Mon Sep 17 00:00:00 2001 From: Yu Ping Date: Thu, 20 Feb 2020 01:40:53 +0800 Subject: [PATCH] tls: need to use thread id to fetch the event Type: fix Change-Id: I429351f04a2865be4a289a3021277f9b2ced902b Signed-off-by: Yu Ping --- src/plugins/tlsopenssl/tls_async.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/tlsopenssl/tls_async.c b/src/plugins/tlsopenssl/tls_async.c index 86604667eb8..fdfcf3a6c52 100644 --- a/src/plugins/tlsopenssl/tls_async.c +++ b/src/plugins/tlsopenssl/tls_async.c @@ -251,8 +251,7 @@ tls_async_openssl_callback (SSL * s, void *cb_arg) int *evt_run_head = &om->queue[thread_index].evt_run_head; TLS_DBG (2, "Set event %d to run\n", event_index); - - event = openssl_evt_get (event_index); + event = openssl_evt_get_w_thread (event_index, thread_index); /* Happend when a recursive case, especially in SW simulation */ if (PREDICT_FALSE (event->status == SSL_ASYNC_READY)) -- 2.16.6