From 1738b5f5c82ec942ab0b1ca176559e071767138b Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 26 Feb 2026 22:31:03 -0300 Subject: fix issue with collision events (#54) --- src/query.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/query.cc') diff --git a/src/query.cc b/src/query.cc index 57665fe..76b31fd 100644 --- a/src/query.cc +++ b/src/query.cc @@ -165,7 +165,7 @@ int TQueryManagerConnection::read(uint8 *Buffer, int Size, int Timeout){ int64 Deadline = GetClockMonotonicMS() + TimeoutMS; while(true){ struct pollfd pollfd = {}; - pollfd.fd = Socket; + pollfd.fd = this->Socket; pollfd.events = POLLIN; pollfd.revents = 0; int ret = poll(&pollfd, 1, TimeoutMS); -- cgit v1.2.3