Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fix) Fixed error checking logic, after pcall #3

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/resty/openssl/version.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ if not ok then
end)
end

if not version_num or version_num < 0x10000000 then
error(string.format("OpenSSL version %x is not supported", version_num or 0))
-- since pcall can return string in the case of error it must be handled appropriately
if type(version_num) == 'string' or not version_num or version_num < 0x10000000 then
error(string.format("OpenSSL version %s is not supported", tostring(version_num or 0)))
end

if version_num >= 0x30000000 then
Expand Down