feat: removed unnecessary assert (#3973)

This commit is contained in:
Joaquim Silveira 2025-08-06 18:37:20 +02:00 committed by GitHub
parent be7e4ea098
commit ab16b2aabf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -130,7 +130,6 @@ SocketIpStatus IpSocket::open(SocketDescriptor& socketDescriptor) {
}
SocketIpStatus IpSocket::send(const SocketDescriptor& socketDescriptor, const U8* const data, const U32 size) {
FW_ASSERT(socketDescriptor.fd != -1, static_cast<FwAssertArgType>(socketDescriptor.fd));
FW_ASSERT(data != nullptr);
FW_ASSERT(size > 0);