mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.signal: Fix loop (fixes #1047)
A pre-commit version probably started with i = nsig and counted down, then an incomplete change to counting up was done
This commit is contained in:
parent
c09bd4346b
commit
5485202439
1 changed files with 2 additions and 2 deletions
|
@ -172,7 +172,7 @@ static void sighook(lua_State *L, lua_Debug *ar) {
|
|||
lua_pushstring(L, LUA_SIGNAL);
|
||||
lua_gettable(L, LUA_REGISTRYINDEX);
|
||||
|
||||
for(int i = 1; i <= nsig; i--) {
|
||||
for(int i = 0; i < nsig; i++) {
|
||||
lua_pushnumber(L, signals[i]);
|
||||
lua_gettable(L, -2);
|
||||
lua_call(L, 0, 0);
|
||||
|
@ -196,7 +196,7 @@ static void handle(int sig) {
|
|||
}
|
||||
|
||||
if(nsig < MAX_PENDING_SIGNALS) {
|
||||
signals[++nsig] = sig;
|
||||
signals[nsig++] = sig;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue