Browse Source

Fix mg.onerror returns non-zero to stop processing

abadc0de 12 năm trước cách đây
mục cha
commit
34df4ec1fd
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      mongoose.c

+ 2 - 2
mongoose.c

@@ -3979,12 +3979,12 @@ static int lsp(struct mg_connection *conn, const char *path,
         if (p[j] == '\n') ++lualines;
         if (p[j] == '?' && p[j + 1] == '>') {
           mg_write(conn, p + pos, i - pos);
-	        // lua_settop(L, 0);
+	        //lua_settop(L, 0);
           lua_pushlightuserdata(L, conn);
           lua_pushcclosure(L, lsp_mg_error, 1);
           snprintf (chunkname, sizeof(chunkname), "@%s+%i", path, lines);
           if (luaL_loadbuffer(L, p + (i + 2), j - (i + 2), chunkname)) {
-            lua_pcall(L, 1, 0, 0);
+            lua_pcall(L, 1, 1, 0);
             result = lua_tointeger(L, -1);
             if (result) return result;
           } else {