mirror of
https://github.com/Kistler-Group/sdbus-cpp.git
synced 2025-07-31 02:27:14 +02:00
fix: invalid assert on event fd (#243)
This commit is contained in:
@ -423,7 +423,7 @@ bool Connection::processPendingRequest()
|
|||||||
bool Connection::waitForNextRequest()
|
bool Connection::waitForNextRequest()
|
||||||
{
|
{
|
||||||
assert(bus_ != nullptr);
|
assert(bus_ != nullptr);
|
||||||
assert(eventFd_.fd != 0);
|
assert(eventFd_.fd >= 0);
|
||||||
|
|
||||||
auto sdbusPollData = getEventLoopPollData();
|
auto sdbusPollData = getEventLoopPollData();
|
||||||
struct pollfd fds[] = {
|
struct pollfd fds[] = {
|
||||||
|
@ -134,7 +134,7 @@ namespace sdbus::internal {
|
|||||||
{
|
{
|
||||||
EventFd();
|
EventFd();
|
||||||
~EventFd();
|
~EventFd();
|
||||||
int fd;
|
int fd{-1};
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Reference in New Issue
Block a user