mirror of
https://github.com/brunoos/luasec.git
synced 2025-05-15 10:51:50 +02:00
Fix missing return
This commit is contained in:
parent
7cfb91d478
commit
fff43542f9
@ -366,7 +366,7 @@ static int meth_shutdown(lua_State *L) {
|
|||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
ssl->state = LSEC_STATE_CLOSED;
|
ssl->state = LSEC_STATE_CLOSED;
|
||||||
return 2;
|
return 2;
|
||||||
case -1:
|
default:
|
||||||
lua_pushboolean(L, 0);
|
lua_pushboolean(L, 0);
|
||||||
ssl->error = SSL_get_error(ssl->ssl, err);
|
ssl->error = SSL_get_error(ssl->ssl, err);
|
||||||
switch (ssl->error) {
|
switch (ssl->error) {
|
||||||
@ -389,6 +389,8 @@ static int meth_shutdown(lua_State *L) {
|
|||||||
}
|
}
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
// unreachable
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user