Skip to content

Commit c7db2a6

Browse files
authored
ciphers_table = table_new(16, 0)
1 parent f56f986 commit c7db2a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ngx/ssl/clienthello.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function _M.get_client_hello_ciphers()
194194
local rc = ngx_lua_ffi_ssl_get_client_hello_ciphers(r, usp,
195195
sizep, errmsg)
196196
if rc == FFI_OK then
197-
local ciphers_table = {} -- table_new won't work because I need to de-GREASE
197+
local ciphers_table = table_new(16, 0)
198198
local array = usp[0]
199199
local size = tonumber(sizep[0])
200200
local y = 1

0 commit comments

Comments
 (0)