forked from Kistler-Group/sdbus-cpp
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