forked from h2zero/esp-nimble-cpp
Fix 128 bit uuid comparison.
This commit is contained in:
@ -291,7 +291,7 @@ bool NimBLEUUID::operator==(const NimBLEUUID& rhs) const {
|
||||
return this->getValue() == rhs.getValue();
|
||||
}
|
||||
|
||||
return memcmp(this->getValue(), rhs.getValue(), 16);
|
||||
return memcmp(this->getValue(), rhs.getValue(), 16) == 0;
|
||||
} // operator==
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user